* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

.uni-container {
    width: 100%;
    max-width: 80%;
    min-width: 80%;
    margin: 0 auto;
}

.header {
    background: #7666f4;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.header .logo img {
    width: 70px;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d1c4ff;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}


.lang {
    font-weight: 500;
}

.login-btn {
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: #ffffff;
    color: #6a4df4;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.logout-btn {
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #ff3b3b;
    background: linear-gradient(135deg, #ff4b4b, #ff0000);
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logout-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #ff0000, #b30000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transform: translateY(-2px);
}

.footer_wrapper {
    background: url("../images/cd65c8ffd8216c22629d3acbe1aa65fc980aea4d.jpg");
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.footer_content_Wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_1 {
    width: 25%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    color: #fff;
}

.footer_1 p {
    font-size: 13px;
    line-height: 25px;
}

.footer_1 img {
    width: 80px;
}

.social_links_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.social_links_wrapper i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #2f2483;
}

.footer_2 {
    width: 20%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer_2 h3 {
    font-size: 17px;
    font-weight: 500;
}

.footer_2 a {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    gap: 20px;
}

.footer_2 i {
    font-size: 10px !important;
}

.footer_3 {
    width: 33%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer_3 h3 {
    font-size: 17px;
    font-weight: 500;
}

.gallery_img_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.gallery_img_wrapper img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 1299px) {
    .uni-container {
        width: 100%;
        max-width: 90%;
        min-width: 90%;
    }
}

@media (max-width: 999px) {
    .footer_content_Wrapper {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .footer_1 {
        width: 48%;
    }

    .footer_3 {
        width: 40%;
    }

    .right-section i {
        display: block;
        font-size: 25px;
    }
}

@media (max-width: 676px) {
    .footer_2 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer_3 {
        width: 70%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        gap: 20px;
    }

    .nav-links a {
        color: #2f2482;
    }

    .nav-links a.active {
        color: #beabff;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer_3 {
        width: 100%;
    }

    .footer_1 {
        width: 100%;
    }

    .footer_2 {
        width: 100%;
    }

    .header .logo img {
        width: 40px;
    }
}

.custom-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.custom-pagination .active {
    background-color: #4a3aff;
    color: white;
}

.custom-pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom_paginator_button {
    width: 40px;
    height: 38px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    background-color: #2f2482;
    cursor: pointer;
    text-decoration: none;
}

.custom_paginator_button .disabled {
    background-color: #756db9;
    cursor: not-allowed;
}

.custom_paginator_page_no {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #ccc;
    color: #333;
}

.assignment-details-wrapper {
    padding: 20px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.assignment-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 25px;
    border-top: 5px solid #3f4095;
}

.assignment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.assignment-title h2 {
    margin: 0;
    color: #3f4095;
    font-size: 24px;
}

.assignment-title p {
    margin: 5px 0 0;
    color: #666;
    font-size: 18px;
    direction: rtl;
}

.assignment-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    background: #f9f9ff;
    padding: 10px;
    border-radius: 6px;
}

.meta-item label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    font-weight: bold;
}

.meta-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.description-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fffdf5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f0e6cc;
}

.desc-box {
    font-size: 14px;
    line-height: 1.6;
}

.desc-box.urdu {
    direction: rtl;
    font-family: "Urdu", serif;
    font-size: 16px;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.attachment-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #3f4095;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.tab-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    background: #e9e9e9;
}

.tab-btn.active {
    color: #3f4095;
    border-bottom-color: #3f4095;
    background: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.student-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.student-row {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.2s;
}

.student-row:hover {
    border-color: #3f4095;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
    margin-right: 15px;
    object-fit: cover;
}

.student-main-info {
    flex: 2;
}

.student-main-info h4 {
    margin: 0;
    font-size: 16px;
}

.student-main-info p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #777;
}

.student-sub-info {
    flex: 1;
    font-size: 13px;
    color: #555;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-uploaded {
    background: #e3f2fd;
    color: #1976d2;
}

.status-accepted {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-rejected {
    background: #ffebee;
    color: #c62828;
}

.status-not-uploaded {
    background: #f5f5f5;
    color: #757575;
}

.action-btns {
    flex: 1;
    text-align: right;
}

.btn-view {
    color: #3f4095;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #3f4095;
    padding: 5px 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-view:hover {
    background: #3f4095;
    color: #fff;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
}

.assignment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.assignment-modal-container {
    background: #fff;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header-custom {
    padding: 20px;
    background: #3f4095;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.student-meta-top {
    display: flex;
    gap: 30px;
}

.meta-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: bold;
}

.meta-group span {
    font-size: 15px;
    font-weight: 500;
}

.modal-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.modal-body-custom {
    flex: 1;
    display: flex;
    overflow: hidden;
    background: #f4f4f9;
}

.doc-viewer-area {
    flex: 3;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ddd;
}

#pdf-canvas {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
    max-width: 100%;
}

.modal-sidebar {
    flex: 1;
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-section {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.action-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-modal {
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download {
    background: #3f4095;
    color: white;
}

.btn-fullpage {
    background: #6c757d;
    color: white;
}

.btn-accept {
    background: #28a745;
    color: white;
}

.btn-reject {
    background: #dc3545;
    color: white;
}

.btn-modal:hover {
    opacity: 0.9;
}

#canvas-loader {
    padding: 50px;
    font-weight: bold;
    color: #3f4095;
}

.swal2-container {
    z-index: 10000 !important;
}

.badge-count {
    background-color: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.class-container {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.custom-select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    min-width: 250px;
    color: #392e85;
    font-weight: 600;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.class-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border-left: 5px solid #392e85;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.class-card.past-class {
    border-left-color: #6c757d;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.batch-badge {
    background: #f0edf7;
    color: #392e85;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.btn-upload {
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid #392e85;
    color: #392e85;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-upload:hover {
    background-color: #392e85;
    color: white;
}

.class-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #392e85;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.class-day {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.attendance-stats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.stat-item {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.stat-present {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.stat-absent {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.card-actions {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.btn-custom {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-join {
    background-color: #392e85;
    color: white;
}

.btn-join:hover {
    background-color: #2a2263;
}

.btn-attendance {
    background-color: #ff9800;
    color: white;
}

.btn-attendance:hover {
    background-color: #e68a00;
}

.btn-disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 12px;
    color: #888;
}

:root {
    --primary-purple: #392e85;
    --light-purple: #f0edf7;
    --present-bg: #e8f5e9;
    --present-text: #2e7d32;
    --present-border: #4caf50;
    --absent-bg: #ffebee;
    --absent-text: #c62828;
    --absent-border: #f44336;
    --card-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.attendance-wrapper {
    padding: 30px;
    margin: 0 auto;
}

.top-nav {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--light-purple);
    transform: translateX(-5px);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1);
}

.btn-back i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-total {
    background: #f0f0f0;
    color: #555;
}

.icon-present {
    background: var(--present-bg);
    color: var(--present-text);
}

.icon-absent {
    background: var(--absent-bg);
    color: var(--absent-text);
}

.stat-data h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
    color: #222;
}

.stat-data span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 100px;
}

.student-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.student-avatar {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 5px;
    background: #f8f9fa;
    border: 2px solid #eee;
    transition: 0.3s;
}

.student-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--light-purple);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.student-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 4px;
}

.student-id {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
    display: block;
}

.modern-toggle {
    display: flex;
    background: #f1f3f5;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 10px 5px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #777;
    transition: all 0.3s ease;
    user-select: none;
}

input[type="radio"] {
    display: none;
}

input[value="Present"]:checked + .toggle-btn {
    background: white;
    color: var(--present-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.student-card.marked-present {
    border-color: var(--present-border);
    background: var(--present-bg);
}

.student-card.marked-present .student-avatar {
    border-color: var(--present-border);
}

input[value="Absent"]:checked + .toggle-btn {
    background: white;
    color: var(--absent-text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.student-card.marked-absent {
    border-color: var(--absent-border);
    background: var(--absent-bg);
}

.student-card.marked-absent .student-avatar {
    border-color: var(--absent-border);
}

.footer-sticky {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid #eee;
}

.btn-action {
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-bulk {
    background: #f1f3f5;
    color: #555;
}

.btn-bulk:hover {
    background: #e9ecef;
}

.btn-save {
    background: var(--primary-purple);
    color: white;
}

.btn-save:hover {
    background: #2a2263;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-sticky {
        width: 90%;
        justify-content: space-between;
        bottom: 15px;
    }
}

.btn-view-attendance {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.btn-view-attendance:hover {
    background-color: #2e7d32;
    color: white;
}

.text-success {
    color: #198754 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.text-danger {
    color: #dc3545 !important;
}
.dashboard_breadcrumb {
    margin-bottom: 20px;
}

.dashboard_breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin: 0;
}

.dashboard_breadcrumb ul li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0;
    gap: 0;
}
.dashboard_breadcrumb ul li a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: 0.2s ease;
}

.dashboard_breadcrumb ul li a:hover {
    color: #5f49f6;
}
.dashboard_breadcrumb ul li.active {
    color: #111827;
    font-weight: 600;
}

.dashboard_breadcrumb ul li span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transform: rotate(-45deg);
    margin: 0 5px;
}

.language-dropdown {
    margin-right: 18px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.language-btn:hover,
.language-btn:focus {
    background: rgba(255,255,255,.2);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    box-shadow: none;
}

.language-btn::after{
    margin-left:4px;
}

.language-menu{
    border: none;
    border-radius:16px;
    overflow:hidden;
    padding:8px;
    min-width:180px;
    margin-top:10px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.language-menu .dropdown-item{
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:10px;
    padding:10px 14px;
    transition:.25s;
    font-weight:500;
}

.language-menu .dropdown-item:hover{
    background:#f4f5ff;
    color:#6A5AE0;
}

.language-menu .dropdown-item.active{
    background:#6A5AE0;
    color:#fff;
}

.custom-login-dropdown .dropdown-menu {
    border-radius: 15px !important;
    padding: 12px !important;
    margin-top: 10px !important;
    min-width: 240px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.custom-login-dropdown ul li {
    display: block !important;
    margin-bottom: 5px !important;
    background: transparent !important;
}

.custom-login-dropdown .dropdown-item {
    padding: 12px 15px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease-in-out !important;
    display: flex !important;
    align-items: center !important;
    color: #333 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.custom-login-dropdown .dropdown-item:hover {
    background-color: #f8f9ff !important;
    color: #4e4093 !important;
    transform: translateX(3px);
}

.custom-login-dropdown .icon-box {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    margin-right: 15px !important;
    font-size: 1.1rem !important;
}

.student-icon {
    background-color: #f0f2ff !important;
    color: #4e4093 !important;
}

.teacher-icon {
    background-color: #fff4ec !important;
    color: #ff8c42 !important;
}

.custom-login-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 25px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.custom-login-dropdown .dropdown-divider {
    margin: 8px 0 !important;
    border-top: 1px solid #eee !important;
    opacity: 1 !important;
}