/* Add here all your CSS customizations */

/* Header Initials CSS */
.avatar-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    user-select: none;
}

/* FOOTER */
.site-footer {
    flex-shrink: 0;
    background: #1f2a33;
    color: #cfd8dc;
    font-size: 0.9rem;
}

.site-footer a {
    color: #9ecbff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.profile-icon-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #2c2c2c; /* Dark background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.profile-icon-wrapper i {
    font-size: 70px;
    line-height: 1;
}

/* ATTENDANCE CHECKS CSS */
.att-toggle {
    cursor: pointer;
    display: inline-block;
}

.att-toggle input {
    display: none;
}

.att-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Hover effect */
.att-toggle:hover .att-circle {
    border-color: #dc3545;
}

/* Selected state */
.att-toggle input:checked + .att-circle {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Optional: Slight glow when selected */
.att-toggle input:checked + .att-circle {
    box-shadow: 0 0 6px rgba(220, 53, 69, 0.6);
}

.att-circle.late {
    border-color: #fd7e14;
}

.att-toggle input:checked + .att-circle.late {
    background-color: #fd7e14;
    border-color: #fd7e14;
    box-shadow: 0 0 6px rgba(253, 126, 20, 0.6);
}

.question-card {
    transition: 0.2s ease;
}

.question-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.answers-container {
    font-size: 0.9rem;
}

.answers-container input[type="radio"] {
    cursor: pointer;
}

.search-dropdown {
    position: absolute;
    background: white;
    width: 250px;
    border: 1px solid #ddd;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.search-dropdown a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
}

.search-dropdown a:hover {
    background: #f5f5f5;
}