.form-container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 800px;
}
body, input, button {
font-family: "Fira Sans", Arial, sans-serif;
color: #0c234b;
}
body {
background: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
align-items: center;
flex-direction: column;
min-height: 30vh;
margin: 0;
}
.question {
margin-bottom: 20px;
}

label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}

input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}

button {
background: #ef9600;
color: #0c234b;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 1.4em;
margin: 40px 0 ;
font-weight: 500;
}

button:hover {
background: #ffac23;
}
.header {
text-align: center;
margin-bottom: 30px;
}

.logo {
max-width: 150px;
height: auto;
margin-bottom: 20px;
}

h1 {
margin-bottom: 10px;
font-size: 36px;
color: #0c234b;
}

p {
margin-bottom: 20px;
color: #555;
}

.footer-links {
list-style: none;
padding: 0;
margin-bottom: 20px;
}

.footer-links li {
display: inline;
margin-right: 10px;
font-size: 0.9em;
}

.footer-links a {
color: #0c234b;
text-decoration: none;
}

.footer-links a:hover {
text-decoration: underline;
}
#interactive-form{ 
 text-align: center;
}

.footer {
width: 100%;
text-align: center;
padding: 20px;
margin-top:20px;
background-color: #f4f4f4;
border-top: 1px solid #ddd;
font-size: 0.9em;

}
.voc_question{ 
padding:40px 0 0 0;
text-align: left;
font-size: 1.2em;
}
.voc_additional_feedback, .voc_additional_rating{
text-align: left;
font-size: 1.0em;

}

/* Copied from form */

     textarea {
    width: 95%;
    height: 100px;
    padding: 10px;
    margin-bottom: 20px;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* Likert Begin */
.likert-fieldset {
width: 95%;
max-width: 800px; /* Adjust based on preference */
margin: auto;
border: none;
padding: 0;
}

.likert-legend {
/* Add specific styles for the legend if needed */
}

.likert-container {
display: flex;
justify-content: space-between;
}

.likert-radio {
display: none; /* Hide default radio button */
}

.likert-label {
display: block;
width: 8%; /* Box width */
height: auto; /* Box height */
line-height: 60px; /* Align text vertically */
text-align: center;
border: 1px solid #ddd;
cursor: pointer;
transition: background-color 0.3s;
user-select: none; /* Prevents text selection */
margin: 40px 0 5px 0;
}

.likert-radio:checked + .likert-label {
background-color: #0c234b; /* Change color based on preference */
color: white;
}
.likert-labels {
display: flex;
justify-content: space-between;
/* Add any additional styling as needed */
}

.left-label, .right-label{
color: #737373;
margin-bottom: 35px;
}
.left-label{
text-align: left;
}
.right-label {
text-align: right;
}
.feedback-box {
background-color: #f2f2f2; /* Grey background */
border: 1px solid #d1d1d1;
border-radius: 5px;
padding: 20px;
display: flex;
align-items: center;
max-width: 600px; /* Adjust as needed */
margin: 20px auto;
}

.checkbox-container {
margin-right: 20px;
}

.green-check {
width: 30px; /* Adjust size as needed */
height: auto;
}
.message-container{
text-align: left;
}
.message-container p {
margin: 0;
color: #333;
}

.rating {
font-weight: bold;
}

.questionTypeWrapper {
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    padding: 20px 0 40px 0;
}

