/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h3 {
    text-align: left;
    margin-bottom: 10px; /* optional spacing */
    font-weight: 500; /* optional to look nice */
}


form {
    margin: 20px;
}

button {
    background-color: #b3e5fc;
    color: #222222;
    padding: 12px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;

    border : 1px solid rgba(0, 0, 0, 0.1);
    borderRadius : 10px;
    boxShadow : 0 2px 6px rgba(0,0,0,0.05);
    transition : transform 0.2s ease;
    backdropFilter : blur(2px);

}

button:hover {
    background-color: #57bcff;
}

input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

#questionsContainer {
    margin: 20px 0;
}

#loadingBarContainer {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    button {
        width: 100%;
    }
}
