/* Add some basic resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 20px; /* Larger font size for prominence */
    font-family: 'Arial', sans-serif;
    color: #9999ff; /* Darker color for emphasis */
    text-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgba(150, 150, 150, 0.1); /* Subtle translucency */
}

.container {
    width: 90%;
    max-width: 550px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    /*background-color: rgba(150, 150, 150, 0.2); /* Subtle translucency */
}

.form-description {
    font-size: 18px; /* Larger font size for prominence */
    color: #aaaaaa; /* Darker color for emphasis */
    margin-bottom: 30px; /* More space below */
    text-align: left; /* Center the text */
}


#questionnaire {
    width: 90%;
    max-width: 550px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(55, 55, 55, 0.9);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(55, 55, 55, 0.9);
    text-align: left;
}


.question-text {
    font-size: 22px; /* Larger font size for prominence */
    font-weight: demi; /* Make it bold */
    color: #ff56b3; /* A color that stands out */
    margin-top: 30px; /* Space above the question */
    margin-bottom: 15px; /* Space below the question */
    height: 100px; /* Fixed height for the question text */
    overflow: hidden; /* Hide overflowed content */
}


#likertscale label {
    display: block;
    margin-bottom: 10px;
}

#progressContainer {
    width: 99%;
    max-width: 500px;
    background-color: #222222
		      margin: 10px auto;
    border-radius: 5px;
    overflow: hidden;
}

#progressBar {
    height: 30px;
    background-color: #ff56b3;
    width: 0%;
    transition: width 0.4s ease-in-out;
}

input[type="text"], select, input[type="radio"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}



label {
    margin-bottom: 10px;
}

button {
    font-size: 22px; /* Larger font size for prominence */
    padding: 20px 15px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    background-color: #ff56b3;
    /*background-image: linear-gradient(to right, #6DD5FA, #FF758C);*/
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}


.fancy-text {
    font-family: 'Arial', sans-serif; /* Change as needed */
    color: #ff56b3; /* A shade of blue */
    font-weight: bold;
    text-decoration: none; /* Removes the default underline */
}
.fancy-text:hover {
    color: #ff56b3; /* Darker blue on hover */
    text-decoration: underline; /* Adds underline on hover */
}
