/* _content/AVAClassroomWebServer/Pages/ClassSetting.razor.rz.scp.css */
/* _content/AVAClassroomWebServer/Pages/DashboardPage.razor.rz.scp.css */

.header[b-p8km4ove1v] {
    padding-top: 32px;
    padding-left: 58px;
    padding-bottom: 32px;
}

.title[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 383px;
    height: 34px;
    opacity: 1;
    transform: rotate(0deg);
}

.title-icon[b-p8km4ove1v] {
    width: 34px;
    height: 34px;
    opacity: 1;
}

.title span[b-p8km4ove1v] {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--ava-dark-black);
}



.dashboard[b-p8km4ove1v] {
    padding: 1.5rem;
    background-color: #f5f7fb;
    height: 100%;
}

/* Top bar */
.top-bar[b-p8km4ove1v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #7baaf7, #5b8def);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.school-info[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.school-icon[b-p8km4ove1v] {
    width: 24px;
    height: 24px;
}

.user-icon img[b-p8km4ove1v] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Summary section */
.summary[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-left: 48px;
    gap: 24px; /* Space between card and button */
    font-family: 'Inter', sans-serif;
}

.summary-card[b-p8km4ove1v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eaf0ff;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    width: 522px;
    height: 120px;
}

.summary-info[b-p8km4ove1v] {
    display: flex;
    flex-direction: column;
}

.summary-info-hover[b-p8km4ove1v] {
    display: flex;
}

.summary-content[b-p8km4ove1v] {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.summary-content-icon[b-p8km4ove1v] {
    width: 36px;
    height: 36px;
}

.summary-label[b-p8km4ove1v] {
    color: var(--ava-dark-black);
    font-size: 20px;
}

.summary-count[b-p8km4ove1v] {
    font-size: 2rem;
    font-weight: 500;
    color: var(--ava-blue);
}

.summary-icon img[b-p8km4ove1v] {
    width: 64px;
    margin-right: 1rem;
}

.summary-hover-icon img[b-p8km4ove1v] {
    width: 34px;
    margin-right: 1rem;
}

.btn-add[b-p8km4ove1v] {
    display: flex;
    flex-direction: column; /* stack + and text vertically */
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--ava-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px 32px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 500;
    width: 250px;
    height: 120px;
    transition: background-color 0.2s ease;
}

    .btn-add:hover[b-p8km4ove1v],
    .btn-add.active-state[b-p8km4ove1v] {
        background-color: var(--ava-orange);
    }

        .btn-add:hover .btn-add-icon[b-p8km4ove1v],
        .btn-add.active-state .btn-add-icon[b-p8km4ove1v] {
            color: var(--ava-orange);
        }

.btn-add-icon[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--ava-blue);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}





/* Tabs */
.tabs[b-p8km4ove1v] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

    .tabs button[b-p8km4ove1v] {
        background: none;
        border: none;
        border-bottom: 3px solid transparent;
        font-weight: 500;
        padding-bottom: 0.3rem;
        cursor: pointer;
    }

        .tabs button.active[b-p8km4ove1v] {
            color: var(--ava-light-blue2);
            border-bottom-color: var(--ava-light-blue2);
        }

/* Grid of cards */
.grid[b-p8km4ove1v] {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px); /* match the fixed width */
    justify-content: start; /* or center, depending on layout */
    gap: 32px;
    padding: 16px 0;
}

.user-card[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid var(--ava-grey);
    border-radius: 0.5rem;
    padding: 0.6rem 0.8rem;
    width: 250px;
    hight: 60px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
}

    .user-card:hover[b-p8km4ove1v],
    .user-card.active-state[b-p8km4ove1v] {
        background-color: var(--ava-blue);
    }

        .user-card:hover img[b-p8km4ove1v],
        .user-card:hover span[b-p8km4ove1v],
        .user-card.active-state img[b-p8km4ove1v],
        .user-card.active-state span[b-p8km4ove1v] {
            color: white;
        }

    .user-card img[b-p8km4ove1v] {
        width: 40px;
        height: 40px;
        object-fit: cover; /* ensures the image fills the circle nicely */
        border-radius: 50%; /* makes it a circle */
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* optional shadow */
    }

    .user-card span[b-p8km4ove1v] {
        font-weight: 500;
        color: var(--ava-dark-black);
        font-size: 20px;
        font-family: 'Inter', sans-serif;
        word-break: break-word;
    }

.user-card-detail[b-p8km4ove1v] {
    display: flex;
    flex-direction: column;
}

    .user-card-detail span.user-card-name[b-p8km4ove1v] {
        font-weight: 500;
        color: var(--ava-dark-black);
        font-size: 20px;
        font-family: 'Inter', sans-serif;
    }



    .user-card-detail span.user-card-number[b-p8km4ove1v] {
        font-weight: 400;
        color: var(--ava-dark-black);
        font-size: 16px;
        font-family: 'Inter', sans-serif;
    }

.user-card:hover .user-card-number[b-p8km4ove1v],
.user-card:hover .user-card-name[b-p8km4ove1v],
.user-card.active-state .user-card-number[b-p8km4ove1v],
.user-card.active-state .user-card-name[b-p8km4ove1v] {
    color: #fff;
}

.grades-container[b-p8km4ove1v] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
}

.grade-section[b-p8km4ove1v] {
    margin-bottom: 1rem;
}

    .grade-section h3[b-p8km4ove1v] {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #374151;
    }

/* Grid inside each grade section */
.class-grid[b-p8km4ove1v] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    justify-items: start;
}

.class-card[b-p8km4ove1v] {
    width: 250px; /* fixed width */
    height: 120px; /* fixed height */
    background-color: #fff;
    border: 1px solid var(--ava-grey);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

    .class-card:hover[b-p8km4ove1v],
    .class-card.active-state[b-p8km4ove1v] {
        background-color: var(--ava-blue);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        /*transform: translateY(-2px);*/
    }

        .class-card:hover .class-name[b-p8km4ove1v],
        .class-card:hover .student-count[b-p8km4ove1v],
        .class-card:hover .student-count_registered[b-p8km4ove1v],
        .class-card:hover .more-btn[b-p8km4ove1v],
        .class-card.active-state .class-name[b-p8km4ove1v],
        .class-card.active-state .student-count[b-p8km4ove1v],
        .class-card.active-state .student-count_registered[b-p8km4ove1v],
        .class-card.active-state .more-btn[b-p8km4ove1v] {
            color: white;
        }

.card-header[b-p8km4ove1v],
.card-footer[b-p8km4ove1v] {
    background-color: inherit;
    border: none; /* remove any borders */
    box-shadow: none; /* remove inner shadows if any */
}

.card-header[b-p8km4ove1v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-name[b-p8km4ove1v] {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ava-dark-black);
}

.more-btn[b-p8km4ove1v] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ava-grey2);
    cursor: pointer;
}

    .more-btn:hover[b-p8km4ove1v] {
        color: #666;
    }

.card-footer[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 6px;
}

    .card-footer img[b-p8km4ove1v] {
        width: 20px;
        height: 22px;
        opacity: 0.7;
    }


.student-count[b-p8km4ove1v] {
    font-size: 1.0rem;
    color: var(--ava-green);
}

.student-count_registered[b-p8km4ove1v] {
    font-size: 1.0rem;
    color: var(--ava-blue);
}

.tabs[b-p8km4ove1v] {
    background-color: #f5f7fa;
    padding-left: 32px;
    padding-top: 20px;
    padding-bottom: 0px;
    margin: 0px;
}

.tab-content[b-p8km4ove1v] {
    background-color: #f5f7fa;
    padding: 32px;
    margin: 0px;
    animation: fadeIn 0.3s ease-in-out;
}

.class-view-header[b-p8km4ove1v] {
    animation: fadeIn 0.3s ease-in-out;
}


.text-danger[b-p8km4ove1v] {
    margin-top: 4px;
}




.timetable-table[b-p8km4ove1v] {
    text-align: center;
    table-layout: auto;
    background-color: white; /* white background */
    border-radius: 12px; /* rounded corners */
    overflow: hidden; /* clip inner corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
    table-layout: auto; /* columns fit content width */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

    .timetable-table th[b-p8km4ove1v] {
        font-style: normal;
        background-color: var(--ava-blue);
        font-size: 14px;
        color: white;
        padding: 8px;
        white-space: nowrap; /* prevents wrapping */
    }

    .timetable-table td[b-p8km4ove1v] {
        padding: 10px;
        vertical-align: middle;
        white-space: nowrap; /* prevents wrapping */
        background-color: white; /* ensures white cell background */
        font-size: 16px;
        color: var(--ava-dark-black);
    }

        .timetable-table td.empty[b-p8km4ove1v] {
            background-color: white;
            color: #bbb;
        }

    .timetable-table[b-p8km4ove1v],
    .timetable-table th[b-p8km4ove1v],
    .timetable-table td[b-p8km4ove1v] {
        border: none; /* remove all borders first */
    }

        .timetable-table tr[b-p8km4ove1v] {
            border-bottom: 1px solid #ddd; /* add only horizontal lines */
        }

.time-cell[b-p8km4ove1v] {
    display: flex;
    justify-content: center;
    height: 100%;
    vertical-align: middle;
}

    .time-cell .index[b-p8km4ove1v] {
        text-align: left;
        width: 20px;
    }

    .time-cell .time[b-p8km4ove1v] {
        text-align: center;
        width: 120px;
    }


.subject[b-p8km4ove1v] {
    font-weight: 600;
}

    .subject.clickable[b-p8km4ove1v] {
        cursor: pointer;
    }

        .subject.clickable:hover[b-p8km4ove1v] {
            color: var(--ava-primary-dark);
        }

.teacher[b-p8km4ove1v] {
    font-size: 0.9rem;
    color: var(--ava-grey2);
}

    .teacher img[b-p8km4ove1v] {
        width: 20px;
        height: 20px;
        border-radius: 9999px;
        margin-right: 8px;
    }





.teacher-info[b-p8km4ove1v] {
    text-align: center;
    padding: 0rem 1.5rem 1rem 1.5rem;
}

    .teacher-info .subtitle[b-p8km4ove1v] {
        color: var(--ava-dark-gray);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .teacher-info .form-group[b-p8km4ove1v] {
        margin-bottom: 1rem;
        text-align: left;
        color: var(--ava-dark-black);
        font-family: 'Inter', sans-serif;
    }

    .teacher-info label[b-p8km4ove1v] {
        display: block;
        margin-bottom: 0.25rem;
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--ava-grey2);
    }

    .teacher-info .form-control[b-p8km4ove1v] {
        width: 100%;
        padding: 0.6rem 0.9rem;
        border-radius: 9999px;
        border: 1px solid #d1d5db;
        outline: none;
        font-size: 0.95rem;
        transition: border-color 0.2s;
    }

        .teacher-info .form-control:focus[b-p8km4ove1v] {
            border-color: #3b82f6;
        }
[b-p8km4ove1v] .form-control {
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    padding: 0.6rem 0.9rem;
}
/*normalBg: blue , hoverBg: orange */
.btn-blue[b-p8km4ove1v] {
    width: 100%;
    background: var(--ava-blue);
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}

    .btn-blue:hover[b-p8km4ove1v] {
        background: var(--ava-orange);
    }

    .btn-blue:disabled[b-p8km4ove1v] {
        background-color: var(--ava-dark-gray); /* 灰色 */
        cursor: not-allowed; /* 滑鼠游標變成禁止符號 */
        opacity: 0.6;
    }

/*Create button effect*/
.create-button-spinner[b-p8km4ove1v] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}


@@keyframes spin {
    0%[b-p8km4ove1v] {
        transform: rotate(0deg);
    }

    100%[b-p8km4ove1v] {
        transform: rotate(360deg);
    }
}

.edit-info[b-p8km4ove1v], .add-info[b-p8km4ove1v], .remove-info[b-p8km4ove1v], .modal-Info[b-p8km4ove1v] {
    text-align: center;
    padding: 0rem 1.5rem 1rem 1.5rem;
}
.modal-Info .subtitle[b-p8km4ove1v] {
    text-align: center;
    color: var(--ava-dark-gray);
    margin-bottom: 30px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}

    .edit-info .subtitle[b-p8km4ove1v], .add-info .subtitle[b-p8km4ove1v] {
        color: #6b7280;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .edit-info .form-group[b-p8km4ove1v], .add-info .form-group[b-p8km4ove1v] {
        margin-bottom: 1rem;
        text-align: left;
        font-family: 'Inter', sans-serif;
    }

    .edit-info .form-card[b-p8km4ove1v], .add-info .form-card[b-p8km4ove1v] {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        text-align: left;
        font-family: 'Inter', sans-serif;
        border-radius: 10px;
        padding: 12px 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

        .edit-info .form-card label[b-p8km4ove1v], .add-info .form-card label[b-p8km4ove1v] {
            color: var(--ava-blue);
        }

        .edit-info .form-card span[b-p8km4ove1v], .add-info .form-card span[b-p8km4ove1v] {
            font-size: 18px;
        }

.form-card .form-card-info[b-p8km4ove1v] {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.form-group .form-row[b-p8km4ove1v] {
    display: flex;
    align-items: flex-end; 
    gap: 25px; 
    width: 100%;
}

.input-stack[b-p8km4ove1v] {
    display: flex;
    flex-direction: column; 
    gap: 4px; 
    flex: 1; 
}

    .input-stack label[b-p8km4ove1v] {
        font-size: 14px;
        color: var(--ava-blue); 
        font-weight: 500;
    }

.card-divider[b-p8km4ove1v] {
    border: 0;
    border-top: 1px solid var(--ava-dark-gray);
    margin: 12px 0; /* 上下間距 12px，左右 0 */
    width: 100%; /* 寬度撐滿 */
}

.form-card .form-card-info .form-card-group[b-p8km4ove1v] {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    justify-content: left;
}



.edit-info label[b-p8km4ove1v], .add-info label[b-p8km4ove1v] {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ava-grey2);
}

.edit-info .form-control[b-p8km4ove1v], .add-info .form-control[b-p8km4ove1v] {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

    .edit-info .form-control:focus[b-p8km4ove1v], .add-info .form-control:focus[b-p8km4ove1v] {
        border-color: #3b82f6;
    }


.add-info img[b-p8km4ove1v], .edit-info img[b-p8km4ove1v] {
    width: 30px;
    height: 30px;
    border-radius: 9999px;
}

    .add-info img.form-card-photo[b-p8km4ove1v], .edit-info img.form-card-photo[b-p8km4ove1v] {
        width: 60px;
        height: 60px;
        border-radius: 9999px;
        object-fit: cover;
    }

.btn-remove[b-p8km4ove1v] {
    position: relative;
    background: none;
    color: var(--ava-red);
    border: none;
    margin: 1rem 0rem 1rem 0rem;
    font-size: 0.95rem;
    padding: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
}

    .btn-remove:hover[b-p8km4ove1v] {
        width: 100%;
        border-radius: 9999px;
        background: var(--ava-red);
        color: white;
        text-decoration: underline;
    }

    .btn-remove .btn-remove-text[b-p8km4ove1v] {
        display: inline-block;
        text-decoration: underline;
        transition: opacity 0.1s ease;
    }

    .btn-remove[b-p8km4ove1v]::after {
        content: var(--remove-text, "Remove");
        opacity: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.1s ease;
        white-space: nowrap;
        text-decoration: underline;
    }

    .btn-remove:hover .btn-remove-text[b-p8km4ove1v] {
        opacity: 0;
    }

    .btn-remove:hover[b-p8km4ove1v]::after {
        opacity: 1;
    }

.btn-remove-red[b-p8km4ove1v] {
    position: relative;
    width: 100%;
    border-radius: 9999px;
    background: var(--ava-red);
    color: white;
    text-decoration: underline;
    border: none;
    margin: 1rem 0rem 1rem 0rem;
    padding: 0.7rem;
    cursor: pointer;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

    .btn-remove-red:hover[b-p8km4ove1v] {
        opacity: 1;
    }

/*normalBg: white , hoverBg: orange */
.btn-white[b-p8km4ove1v] {
    width: 100%;
    border: 1px solid var(--ava-blue);
    background: white;
    color: var(--ava-blue);
    border-radius: 9999px;
    font-size: 0.95rem;
    margin: 1rem 0rem 0rem 0rem;
    padding: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

    .btn-white:hover[b-p8km4ove1v] {
        background: var(--ava-orange);
        border: 1px solid white;
        color: white;
    }
    .btn-white:disabled[b-p8km4ove1v] {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }

.add-info .btn-white:hover[b-p8km4ove1v] {
    background: var(--ava-light-grayish-blue);
    border: 1px solid var(--ava-blue);
    color: var(--ava-blue);
}

.upload-file[b-p8km4ove1v] {
    width: 100%;
    box-sizing: border-box; /* 包含 padding 和 border */
}

.card-subtitle[b-p8km4ove1v] {
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: var(--ava-grey2);
}

.drag-drop[b-p8km4ove1v] {
    height: 200px;
    padding: 32px;
    border: 1px solid #D9DDE3;
    border-radius: 10px;
    background: white;
    opacity: 1;
    display: flex;
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 水平置中 */
    justify-content: center; /* 垂直置中 */
    gap: 16px; /* 元素間距 */
    box-sizing: border-box;
    overflow: hidden;
}

    .drag-drop.dragover[b-p8km4ove1v] {
        background-color: #eef6ff;
    }

    .drag-drop.is-disabled[b-p8km4ove1v] {
        pointer-events: none; 
        opacity: 0.5; 
        cursor: not-allowed; 
    }

.drag-text[b-p8km4ove1v] {
    font-family: 'Inter', sans-serif; /* 使用 Inter 字型，找不到則用預設 sans-serif */
    font-weight: 500; /* Medium 對應數值為 500 */
    font-style: normal; /* 若是 "Medium"，實際是 normal 而不是 italic */
    font-size: 16px; /* 字體大小 */
    line-height: 140%; /* 行高 140%（相當於 22.4px） */
    letter-spacing: 0; /* 字距不調整 */
    text-align: center; /* 文字置中對齊 */
    color: var(--ava-dark-black);
}

.file-input[b-p8km4ove1v] {
    display: none; /* 隱藏原生按鈕 */
}

.upload-link[b-p8km4ove1v] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: var(--ava-light-blue2);
    text-decoration: underline;
    cursor: pointer;
}

    .upload-link:hover[b-p8km4ove1v] {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        text-decoration: none;
        color: #155ab6;
    }

.drag-drop.success[b-p8km4ove1v] {
    padding: 0;
    justify-content: flex-start; /* ⭐ 關鍵 */
    align-items: stretch;
}

.drag-drop .upload-success-content[b-p8km4ove1v] {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    background: #e6f1fd;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.upload-success-content[b-p8km4ove1v] {
    width: 100%;
    height: 100%;
    background: #e6f1fd;
    display: flex;
    align-items: center;
    justify-content: center;
}




    .upload-success-content img[b-p8km4ove1v] {
        width: 30px;
        height: 30px;
    }

.btn-upload-remove[b-p8km4ove1v] {
    position: relative;
    background: none;
    color: var(--ava-red);
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
}
    .btn-upload-remove:disabled[b-p8km4ove1v] {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }

.select-wrapper[b-p8km4ove1v], .select-wrapper-right[b-p8km4ove1v] {
    position: relative;
    width: 100%;
    color: var(--ava-dark-black);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

.select-with-arrow[b-p8km4ove1v] {
    appearance: none; /* 隱藏原生箭頭 (Chrome/Safari) */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px; /* 為箭頭留出空間 */
    cursor: pointer;
}

    .select-with-arrow.is-disabled[b-p8km4ove1v] {
        background-color: #f0f0f0 !important; 
        color: #999 !important; 
        cursor: not-allowed; 
        pointer-events: none; 
        border-color: #e0e0e0; 
    }

/* 繪製扁 V 箭頭 */
.select-wrapper[b-p8km4ove1v]::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    /* 畫出扁 V (利用 border 旋轉 45 度) */
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    /* 初始狀態：朝下 */
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
    pointer-events: none; /* 讓點擊穿透到 select */
}


.select-wrapper.open[b-p8km4ove1v]::after {
    transform: translateY(-30%) rotate(-135deg);
}


.select-wrapper-right[b-p8km4ove1v] {
    position: relative;
    width: 100%;
}

.select-wrapper-right[b-p8km4ove1v] {
    display: flex;
    justify-content: space-between; /* 讓文字在左，按鈕在右 */
    align-items: center;
    position: relative;
    width: 100%;
}




/* 圓形按鈕主體 */
.circle-arrow-btn[b-p8km4ove1v] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    outline: none;
    flex-shrink: 0; /* 防止按鈕被擠壓 */
}

/* 內部的箭頭圖形 */
.arrow-icon[b-p8km4ove1v] {
    width: 7px;
    height: 7px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(-45deg); /* 預設向右 */
    transition: transform 0.3s ease;
    display: block;
    margin-left: -2px; /* 微調箭頭視覺居中 */
}

/* 當選單打開時，旋轉按鈕內的箭頭 */
.select-wrapper-right.open .arrow-icon[b-p8km4ove1v] {
    transform: rotate(135deg); /* 轉向左 */
    margin-left: 2px;
}

/* 按鈕懸停效果 */
.circle-arrow-btn:hover[b-p8km4ove1v] {
    background-color: #f8f9fa;
    border-color: var(--ava-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-select[b-p8km4ove1v] {
}


.options-list[b-p8km4ove1v] {
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
    border: 1px solid var(--ava-grey); /* 清單邊框顏色 */
    border-radius: 15px; /* 清單圓角 */
    background: white;
    position: absolute;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    z-index: 10;
}

    .options-list li[b-p8km4ove1v] {
        padding: 8px;
        cursor: pointer;
    }

        .options-list li:hover[b-p8km4ove1v] {
            background-color: #e9ecef;
        }



.options-list-collection[b-p8km4ove1v] {
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
    border: 1px solid var(--ava-grey);
    border-radius: 15px;
    background: white;
    top: 100%;
    right: -310px;
    left: auto;
    width: 250px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .options-list-collection.drop[b-p8km4ove1v] {
        position: absolute;
        top: -300%;
        right: -270px;
        left: auto;
        width: 250px;
        max-height: 280px;
    }

    .options-list-collection li[b-p8km4ove1v] {
        display: flex;
        flex-direction: row;
        padding: 8px;
        cursor: pointer;
        align-items: center;
    }

        .options-list-collection li:hover[b-p8km4ove1v] {
            background-color: #e9ecef;
        }

        .options-list-collection li .teacher-list-info[b-p8km4ove1v] {
            display: flex;
            flex-direction: column;
            margin-left: 10px;
        }

            .options-list-collection li .teacher-list-info span[b-p8km4ove1v] {
                font-size: 12px;
            }

        .options-list-collection li .course-list-info[b-p8km4ove1v] {
            display: flex;
            flex: 0 0 80px;
            margin-left: 10px;
            font-size: 14px;
        }

.course-item-label[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    border-bottom: 1px solid #eee;
}


    .course-item-label:hover[b-p8km4ove1v] {
        background-color: #f8f9fa;
    }


.course-radio:checked + .course-item-label[b-p8km4ove1v] {
    background-color: #e3f2fd;
    border-left: 4px solid var(--ava-blue);
}

/* 隱藏 Radio 本身 */
.course-radio[b-p8km4ove1v] {
    display: none;
}

.action-footer[b-p8km4ove1v] {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.btn-confirm[b-p8km4ove1v] {
    background-color: var(--ava-blue);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

    .btn-confirm:hover[b-p8km4ove1v] {
        background-color: var(--ava-orange);
    }


    .btn-confirm:disabled[b-p8km4ove1v] {
        background-color: #ccc;
        color: #888;
        cursor: not-allowed;
        opacity: 0.7;
    }

.options-list-container[b-p8km4ove1v] {
    display: flex;
    gap: 20px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    right: -350px;
    top: -400px;
    flex-direction: column;
    position: absolute;
}

    .options-list-container .options-list-group[b-p8km4ove1v] {
        display: flex;
        flex-direction: row;
    }

        .options-list-container .options-list-group.custom[b-p8km4ove1v] {
            display: flex;
            flex-direction: column;
        }

        .options-list-container .options-list-group .input-row[b-p8km4ove1v] {
            margin-bottom: 0.2rem;
        }

            .options-list-container .options-list-group .input-row span[b-p8km4ove1v] {
                color: var(--ava-blue);
                font-size: 14px;
            }

            .options-list-container .options-list-group .input-row .form-control[b-p8km4ove1v] {
                width: 100%;
                padding: 0.6rem 0.9rem;
                border-radius: 9999px;
                border: 1px solid #d1d5db;
                outline: none;
                font-size: 0.95rem;
                margin: 10px 0px;
                transition: border-color 0.2s;
                display: flex;
                flex-direction: row;
                align-items: center;
            }

                .options-list-container .options-list-group .input-row .form-control .teacher-list-info[b-p8km4ove1v] {
                    display: flex;
                    flex-direction: column;
                    margin-left: 10px;
                }

.time-row[b-p8km4ove1v] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-control.time-input[b-p8km4ove1v] {
    width: 150px;
    border-radius: 10px;
}

.is-disabled[b-p8km4ove1v] {
    background-color: #e9ecef !important; /* 灰底 */
}

.time-separator[b-p8km4ove1v] {
    font-size: 24px;
    font-weight: bold;
}

@@keyframes fadeIn {
    from[b-p8km4ove1v] {
        opacity: 0;
        transform: translateY(5px);
    }

    to[b-p8km4ove1v] {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/AVAClassroomWebServer/Pages/ImportCourseSessionPage.razor.rz.scp.css */
.body[b-fy1k7unb4u] {
    display: flex;
    flex-direction: column; /* 垂直排列 header 和 content */
    height: 100%;
    min-width: 1080px;
}

.header[b-fy1k7unb4u] {
    margin-top: 32px; /* 容器頂部距離外部元素或頁面 32 像素 */
    margin-left: 58px; /* 容器左邊距離外部元素或頁面 58 像素 */
}

.title[b-fy1k7unb4u] {
    display: flex; /* 設為彈性容器，子元素水平排列 */
    align-items: center; /* 子元素在容器內垂直置中對齊 */
    gap: 16px; /* 子元素（icon 和文字）之間的水平間距 */
    width: 383px; /* 容器寬度固定為 383 像素 */
    height: 34px; /* 容器高度固定為 34 像素 */
    opacity: 1; /* 容器完全不透明（100% 可見） */
    transform: rotate(0deg); /* 容器不旋轉（旋轉角度為 0 度，可省略） */
}

.title-icon[b-fy1k7unb4u] {
    width: 34px;
    height: 34px;
    opacity: 1;
}

.title span[b-fy1k7unb4u] {
    font-family: 'Inter', sans-serif; /* 字型 */
    font-weight: 400; /* 字重，400 是正常 */
    font-style: normal; /* font-style 裡沒有 Regular，通常是 normal、italic 或 oblique */
    font-size: 20px; /* 字體大小 */
    line-height: 125%; /* 行高，可以寫成 1.25 */
    letter-spacing: 0; /* 字距，0% 等同 0 */
    vertical-align: middle; /* 垂直對齊 */
    color: var(--ava-dark-black);
}

.sub-title[b-fy1k7unb4u] {
    margin-top: 64px; /* 容器頂部距離外部元素或頁面 32 像素 */
}

    .sub-title span[b-fy1k7unb4u] {
        font-family: 'Inter', sans-serif; /* 字型 */
        font-weight: 700;
        font-style: normal; /* font-style 裡沒有 Regular，通常是 normal、italic 或 oblique */
        font-size: 32px; /* 字體大小 */
        line-height: 130%; /* 行高，可以寫成 1.25 */
        letter-spacing: 0; /* 字距，0% 等同 0 */
        vertical-align: middle; /* 垂直對齊 */
        color: var(--ava-dark-black);
    }

/* Content */
.content[b-fy1k7unb4u] {
    height: 100%;
    margin-top: 32px;
    background-color: #F1F4F8;
}

.three-columns[b-fy1k7unb4u] {
    display: flex;
    gap: 24px;
    padding: 24px;
}

.column[b-fy1k7unb4u] {
    flex: 1;
    display: flex;
    justify-content: center; /* 內容置中（水平） */
    align-items: flex-start; /* 靠上對齊 */
}

.card[b-fy1k7unb4u] {
    display: flex; /* 使用 Flex 排版，讓裡面的項目（圖片、標題、副標）垂直排列 */
    flex-direction: column; /* 子元素垂直堆疊（從上到下） */
    align-items: center; /* 子元素在交叉軸（橫向）置中對齊 */
    border: none; /* 移除邊框 */
    background-color: transparent; /* 移除背景色 */

    width: 100%; /* 卡片寬度預設撐滿容器寬度 */
    min-width: 464px; /* 但最多寬不超過 240px，避免過寬 */

    text-align: center; /* 卡片內文字置中對齊 */
    gap: 24px;
}

.card-image[b-fy1k7unb4u] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.card-title[b-fy1k7unb4u] {
    font-family: 'Inter', sans-serif; /* 使用 Inter 字型，並設備用字型 */
    font-weight: 700; /* 700 = Bold 粗體 */
    font-size: 32px; /* 文字大小 */
    line-height: 130%; /* 行高：130% 通常寫成百分比或 px */
    letter-spacing: 0; /* 字距（0% = 0px） */
    vertical-align: middle; /* 多數情況下用在 inline 元素內對齊 */
    color: var(--ava-dark-black);
}

.card-subtitle[b-fy1k7unb4u] {
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: var(--ava-grey2);
}

.button-container[b-fy1k7unb4u] {
    width: 100%; /* 填滿寬度 */
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 讓內部元素水平置中 */
    margin-top: 116px; /* 上方間距（可選） */
}

.create-button[b-fy1k7unb4u],
.alert-button[b-fy1k7unb4u] {
    width: 464px;
    height: 48px;
    opacity: 1;
    border-radius: 23px;
    border-width: 1px;
    border-style: solid;
    border-color: #FFFFFF; /* 可依需要調整 */

    background-color: #214F7C; /* 按鈕背景色 */
    color: white; /* 文字顏色 */

    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium 通常是 500 */
    font-style: normal; /* CSS 中沒有所謂 'Medium' 的 font-style，設為 normal */
    font-size: 14px;
    line-height: 140%; /* 或用具體值：line-height: 19.6px; */
    letter-spacing: 0;
    text-align: center;
}

    .create-button:not(:disabled):hover[b-fy1k7unb4u],
    .alert-button:not(:disabled):hover[b-fy1k7unb4u] {
        background-color: #EE963F; /* Hover 色 */
        cursor: pointer;
    }

    .create-button:disabled[b-fy1k7unb4u],
    .alert-button:disabled[b-fy1k7unb4u],
    .alert-button-white:disabled[b-fy1k7unb4u] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.alert-button-white[b-fy1k7unb4u] {
    width: 464px;
    height: 48px;
    border: 1px solid var(--ava-blue);
    background: white;
    color: var(--ava-blue);
    border-radius: 9999px;
    padding: 0.7rem;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium 通常是 500 */
    font-style: normal; /* CSS 中沒有所謂 'Medium' 的 font-style，設為 normal */
    font-size: 14px;
}

    .alert-button-white:hover[b-fy1k7unb4u] {
        background: var(--ava-orange);
        border: none;
        color: white;
    }


/*Create button effect*/
.create-button-spinner[b-fy1k7unb4u] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-fy1k7unb4u 0.8s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.delete-button-spinner[b-fy1k7unb4u] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-fy1k7unb4u 0.8s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin-b-fy1k7unb4u {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Upload dragdrop */
.upload-file[b-fy1k7unb4u] {
    width: 100%;
    max-width: 464px;
    box-sizing: border-box; /* 包含 padding 和 border */
}

.drag-drop[b-fy1k7unb4u] {
    height: 200px;
    padding: 32px;
    border: 1px solid #D9DDE3;
    border-radius: 10px;
    background: white;
    opacity: 1;
    display: flex;
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 水平置中 */
    justify-content: center; /* 垂直置中 */
    gap: 16px; /* 元素間距 */
}

    .drag-drop.dragover[b-fy1k7unb4u] {
        background-color: #eef6ff;
    }

.drag-text[b-fy1k7unb4u] {
    font-family: 'Inter', sans-serif; /* 使用 Inter 字型，找不到則用預設 sans-serif */
    font-weight: 500; /* Medium 對應數值為 500 */
    font-style: normal; /* 若是 "Medium"，實際是 normal 而不是 italic */
    font-size: 16px; /* 字體大小 */
    line-height: 140%; /* 行高 140%（相當於 22.4px） */
    letter-spacing: 0; /* 字距不調整 */
    text-align: center; /* 文字置中對齊 */
    color: var(--ava-dark-black);
}

.file-input[b-fy1k7unb4u] {
    display: none; /* 隱藏原生按鈕 */
}

.upload-link[b-fy1k7unb4u] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: var(--ava-light-blue2);
    text-decoration: underline;
    cursor: pointer;
}

    .upload-link:hover[b-fy1k7unb4u] {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        text-decoration: none;
        color: #155ab6;
    }


.drag-drop.success[b-fy1k7unb4u] {
    padding: 0;
    justify-content: flex-start; /* ⭐ 關鍵 */
    align-items: stretch;
    overflow: hidden;
}

.drag-drop .upload-success-content[b-fy1k7unb4u] {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    background: #e6f1fd;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.upload-success-content[b-fy1k7unb4u] {
    width: 100%;
    height: 100%;
    background: #e6f1fd;
    display: flex;
    align-items: center;
    justify-content: center;
}




    .upload-success-content img[b-fy1k7unb4u] {
        width: 30px;
        height: 30px;
    }

.btn-upload-remove[b-fy1k7unb4u] {
    position: relative;
    background: none;
    color: var(--ava-red);
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
}

.download-link[b-fy1k7unb4u] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: var(--ava-blue);
    text-decoration: underline;
    cursor: pointer;
}

.download-template[b-fy1k7unb4u] {
    display: flex;
    align-items: center;
    gap: 10px; /* adjust spacing here */
}

.alert-backdrop[b-fy1k7unb4u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* 遮罩深淺 */
    display: flex;
    justify-content: center; /* 水平致中 */
    align-items: center; /* 垂直致中 */
    z-index: 9999; /* 確保在最上層 */
}

/* 彈窗主體 */
.custom-alert[b-fy1k7unb4u] {
    background: white;
    text-align: center;
    font-weight: 700;
    width: 580px;
    max-width: 90%;
    padding: 32px;
    border-radius: 20px; /* 自定義大圓角 */
    box-shadow: 0 5px 5px rgba(33,79,124,0.3);
    color: var(--ava-dark-black);
    font-size: 32px;
    font-family: 'Inter', sans-serif;
}

.alert-subtitle[b-fy1k7unb4u] {
    text-align: center;
    font-weight: 400;
    color: var(--ava-dark-gray);
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 12px;
}
/* _content/AVAClassroomWebServer/Shared/Backend.razor.rz.scp.css */


.layout-container[b-cq4ho8iscw] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, sans-serif;
    min-width: 800px;
}

/* 頂部標題 */
.header[b-cq4ho8iscw] {
    width: 100%; /* 或可指定 1920px */
    height: 72px;
    padding: 16px 0 16px 28px; /* top right bottom left */
    display: flex;
    align-items: center;
    justify-content: space-between; /* <-- Key change */
    background: linear-gradient(165deg, #92BFFF 0%, #214F7C 100%);

}

.title-menu[b-cq4ho8iscw] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo[b-cq4ho8iscw] {
    width: 207px;
    height: 24px;
}

/* 主體區域：左右分欄 */
.main[b-cq4ho8iscw] {
    display: flex;
    flex: 1;
}

/* 左側導覽列 */
.sidebar[b-cq4ho8iscw] {
    width: 282px;
    border-right: 1px solid #ccc;
    padding: 48px 32px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    /* ✅ 防止壓縮 */
    flex-shrink: 0;
    overflow-y: auto;
}

    .sidebar ul[b-cq4ho8iscw] {
        list-style: none;
        padding: 0;
    }

    .sidebar li[b-cq4ho8iscw] {
        margin: 0.5rem 0;
    }

    .sidebar a[b-cq4ho8iscw] {
        text-decoration: none;
        color: #333;
    }

[b-cq4ho8iscw] .nav-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  
}



[b-cq4ho8iscw] .nav-item:hover {
    background-color: var(--ava-light-blue);
}

[b-cq4ho8iscw] .nav-item span {
    display: inline-block; /* 讓 transform 生效 */
    transition: transform 0.3s ease;
}

    /* 滑鼠移入時文字往右移動 */
[b-cq4ho8iscw] .nav-item:hover span {
    transform: translateX(8px); /* 向右移動8px */
    /*color: #1a73e8;  同時改變文字顏色(可選) */
}

[b-cq4ho8iscw] .nav-item {
    width: 218px;
    height: 48px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    box-sizing: border-box;
    color: var(--ava-dark-black);
    transition: color 0.3s ease, background-color 0.3s;
}
    [b-cq4ho8iscw] .nav-item.active {
        width: 218px;
        height: 48px;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 10px;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 20px;
        box-sizing: border-box;
        background-color: var(--ava-light-blue);
        color: var(--ava-dark-black);
        transition: color 0.3s ease, background-color 0.3s;
    }
[b-cq4ho8iscw] .nav-icon {
    width: 16px;
    height: 16px;
    display: block; /* 避免圖片下方有空隙 */
}


.sidebar-footer[b-cq4ho8iscw] {
    margin-top: auto;
    padding-top: 24px;
    text-align: center;
}

/* 右側內容區 */
.content[b-cq4ho8iscw] {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
}


.text-danger[b-cq4ho8iscw] {
    margin-top: 4px;
}


[b-cq4ho8iscw] .form-control {
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    padding: 0.6rem 0.9rem;
}

    [b-cq4ho8iscw] .form-control.readonly {
        background-color:white;
        border-radius:0px;
        border: 0px;
        padding: 0rem;
    }
        [b-cq4ho8iscw] .form-control.readonly:focus {
            outline: none;
            box-shadow: none;
            border: none;
        }

[b-cq4ho8iscw] .input-error {
    border: 1px solid #dc3545 !important;
    outline: 0 !important;
}

   
    [b-cq4ho8iscw] .input-error:focus {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        border-color: #dc3545;
    }
.account-menu[b-cq4ho8iscw] {
    margin-right: 2px;
}

.account-button[b-cq4ho8iscw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    font-size: 0.8rem;
}

    .account-button:hover[b-cq4ho8iscw] {
        opacity: 0.7;
    }

    .account-button img[b-cq4ho8iscw] {
        width: 72px;
        height: 72px;



    }

.account-dropdown[b-cq4ho8iscw] {
    position: absolute;
    right: 0;
    top: 78px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 254px;
    overflow: hidden;
    animation: fadeIn-b-cq4ho8iscw 0.2s ease;
    z-index: 100;
}

.account-header[b-cq4ho8iscw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.account-icon[b-cq4ho8iscw] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f0f4ff;
}

.account-title[b-cq4ho8iscw] {
    font-weight: 500;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.account-item[b-cq4ho8iscw] {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    color: var(--ava-dark-black);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.account-item-inner[b-cq4ho8iscw] {
    padding: 12px 42px; 
    border-radius: 10px; 
    transition: background-color 0.15s ease, color 0.15s ease;
}


.account-item:hover .account-item-inner[b-cq4ho8iscw] {
    background-color: #f7f8f9;
}
.account-item.setting:hover .account-item-inner[b-cq4ho8iscw] {
    color: var(--ava-blue);
}
.account-item.logout:hover .account-item-inner[b-cq4ho8iscw] {
    color: var(--ava-red);
}

@keyframes fadeIn-b-cq4ho8iscw {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.account-settings-form[b-cq4ho8iscw] {
    text-align: left;
    padding: 1.0rem 3.0rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

    .account-settings-form .subtitle[b-cq4ho8iscw] {
        text-align: center;
        color: #6b7280;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .account-settings-form .form-group[b-cq4ho8iscw] {
        margin-bottom: 1rem;
    }

    .account-settings-form label[b-cq4ho8iscw] {
        display: block;
        font-weight: 500;
        font-size: 14px;
        color: var(--ava-dark-gray);
        margin-bottom: 0.3rem;
    }

    .account-settings-form .form-control[b-cq4ho8iscw] {
        width: 100%;
        padding: 0.65rem 0.9rem;
        border: 1px solid #d1d5db;
        border-radius: 9999px;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s;
    }

        .account-settings-form .form-control:focus[b-cq4ho8iscw] {
            border-color: #3b82f6;
        }

    .account-settings-form .section-title[b-cq4ho8iscw] {
        font-weight: 600;
        font-size: 1rem;
        margin: 1.5rem 0 0.8rem;
        color: #111827;
    }

    .account-settings-form .button-group[b-cq4ho8iscw] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.8rem;
    }


    .account-settings-form .btn-save[b-cq4ho8iscw], .btn-cancel[b-cq4ho8iscw] {
        width: 100%;
        background: var(--ava-blue);
        color: white;
        border: none;
        border-radius: 9999px;
        padding: 0.75rem;
        margin-bottom:10px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s;
    }

    .account-settings-form .btn-save:hover[b-cq4ho8iscw] {
        background: var(--ava-orange);
    }

.account-settings-form .btn-cancel[b-cq4ho8iscw] {

    background: white;
    color: var(--ava-blue);
    border: 1px solid var(--ava-blue);

}

    .account-settings-form .btn-cancel:hover[b-cq4ho8iscw] {
        background: var(--ava-grey);
    }

/* Password field with eye icon */
.password-group[b-cq4ho8iscw] {
    position: relative;
}

.toggle-password[b-cq4ho8iscw] {
    position: absolute;
    right: 10px;
    top: 37px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-icon[b-cq4ho8iscw] {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.toggle-password:hover .password-icon[b-cq4ho8iscw] {
    opacity: 1;
    transform: scale(1.1);
}


.language-card[b-cq4ho8iscw] {
    position: relative;
    display: flex;
    flex-direction: row;
 
    
}

.language-list[b-cq4ho8iscw] {
    position: absolute;
    top:  70px;
    left: 0px;
    list-style: none;
    border-radius: 9px;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    width: 120px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-family: 'Inter', sans-serif;
}

    .language-list li[b-cq4ho8iscw] {
        padding: 8px 12px;
        cursor: pointer;
    }

        .language-list li:hover[b-cq4ho8iscw] {
            background-color: #e5e8ea;
        }

.btn-language[b-cq4ho8iscw] {
    border: none;
    background: none;
    width: fit-content;
}


.language-icon[b-cq4ho8iscw] {
    width: 34px;
    height: 34px;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.1s ease;
}
/* _content/AVAClassroomWebServer/Shared/MainLayout.razor.rz.scp.css */
.page[b-gkx5fbq2o2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gkx5fbq2o2] {
    flex: 1;
}

.sidebar[b-gkx5fbq2o2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gkx5fbq2o2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gkx5fbq2o2]  a, .top-row .btn-link[b-gkx5fbq2o2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-gkx5fbq2o2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-gkx5fbq2o2] {
        display: none;
    }

    .top-row.auth[b-gkx5fbq2o2] {
        justify-content: space-between;
    }

    .top-row a[b-gkx5fbq2o2], .top-row .btn-link[b-gkx5fbq2o2] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gkx5fbq2o2] {
        flex-direction: row;
    }

    .sidebar[b-gkx5fbq2o2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gkx5fbq2o2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-gkx5fbq2o2], article[b-gkx5fbq2o2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/AVAClassroomWebServer/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-9l4g1e3tvz] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-9l4g1e3tvz] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9l4g1e3tvz] {
    font-size: 1.1rem;
}

.oi[b-9l4g1e3tvz] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-9l4g1e3tvz] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9l4g1e3tvz] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9l4g1e3tvz] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9l4g1e3tvz]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-9l4g1e3tvz]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-9l4g1e3tvz]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9l4g1e3tvz] {
        display: none;
    }

    .collapse[b-9l4g1e3tvz] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-9l4g1e3tvz] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
