@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

.scrollingSection {
    width: 100%;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

tbody{
    color: white;
}

.questionBlock,submit {
    box-shadow: 0 2px 4px rgba(76, 146, 238, 0.2);
    backdrop-filter: blur(8px);
    gap: 12px;
    scroll-snap-align: start;
    width: 90%;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    background: #E3E7F1;
    padding: 20px;
    transition: transform 0.2s ease-in-out;
}


.submit:hover {
    transform: scale(0.99);
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform;
}

.questionBlock:hover {
    background: #b9b9ce;
}

.questionText {
    text-align: center;
}

.formBlocklist {
    width: 100%;
    margin: 10px;
}

.topicText {
    text-align: center;
    color: white;
}


input[type="text"],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;

}

#buttonContainer {
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#backButton {
    margin-left: 20px;
    order: 1;
}

#nextButton {
margin-right: 20px;
    order: 2;
}

#backButton, #nextButton {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #52688F;
    padding: 20px 0;
    text-align: center;
}

.a {
    color: inherit;
    text-decoration: none;
    cursor: default;
    border-bottom: none;
}


.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

a{
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
    color: #000000;
}

