/** survey-invitation class -  Not being used ATM**/
.survey-invitation {
    background-color: #e9ecef;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.survey-invitation a {
    font-weight: bold;
    color: #007bff;
    text-decoration: underline;
}

.survey-invitation a:hover {
    text-decoration: none;
}

/* ="surveyNotification" class="notification" */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notification {
    display: none; /* Initially hidden */
    background-color: #e9ecef;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn ease 1s;
    animation-fill-mode: forwards; /* Keeps the element visible after the animation */
}

.notification a {
    font-weight: bold;
    color: #007bff;
    text-decoration: underline;
}

.notification a:hover {
    text-decoration: none;
}



/*********************************/




.join-form input:disabled {
    background: #b0b0b0;
}


body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f0f0f0;
}
p {
    margin-top: 1px; /* Adjust this value as needed */
    margin-bottom: 1px; /* Adjust this value as needed */
}

.form-heading {
    text-align: center;
    color: #333;
    padding-bottom: 20px;
}

.join-form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.join-form input,
.join-form select,
.join-form button {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
}

.join-button {
    background-color: #3498db;
    color: white;
    cursor: pointer;
    border: none;
}

.join-button:hover {
    background-color: #2980b9;
}


.dropdown-section, 
.checkbox-section {
    background: #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.checkbox-section-off {
    background: #e0e0e0;
    padding: 15px;
    border-radius: 5px;
}


