/* =========================================================
   DIVM - GLOBAL STYLES
   ========================================================= */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    color: var(--divm-text);
    background: var(--divm-background);
}


/* =========================================================
   DIVM VARIABLES
   ========================================================= */

:root {
    --divm-primary: #2563eb;
    --divm-primary-dark: #1d4ed8;
    --divm-sidebar: #0f172a;
    --divm-sidebar-hover: #1e293b;
    --divm-sidebar-active: #2563eb;
    --divm-background: #f8fafc;
    --divm-white: #ffffff;
    --divm-text: #1e293b;
    --divm-muted: #64748b;
    --divm-border: #e2e8f0;
    --divm-sidebar-width: 270px;
}


/* =========================================================
   GENERAL
   ========================================================= */

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

html,
body {
    height: 100%;
    margin: 0;
}

.app-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: #1e293b;
    color: white;
    flex-shrink: 0;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 70px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.content {
    flex: 1;
    padding: 25px;
    background: #f8fafc;
}*/

/* =========================================================
   DIVM V2 - APPLICATION LAYOUT
   ========================================================= */

/*:root {
    --divm-primary: #2563eb;
    --divm-primary-dark: #1d4ed8;
    --divm-sidebar: #0f172a;
    --divm-sidebar-hover: #1e293b;
    --divm-sidebar-active: #2563eb;
    --divm-background: #f8fafc;
    --divm-white: #ffffff;
    --divm-text: #1e293b;
    --divm-muted: #64748b;
    --divm-border: #e2e8f0;
    --divm-sidebar-width: 270px;
}*/


/* =========================================================
   BODY
   ========================================================= */

/*html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: var(--divm-background);
    color: var(--divm-text);
}*/


/* =========================================================
   APP
   ========================================================= */

/*.divm-app {
    min-height: 100vh;
    display: flex;
}*/


/* =========================================================
   SIDEBAR
   ========================================================= */

/*.divm-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--divm-sidebar-width);
    background: var(--divm-sidebar);
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 1050;
    transition: transform 0.25s ease;
}*/


/* =========================================================
   BRAND
   ========================================================= */

/*.divm-brand {
    height: 78px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.divm-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.divm-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
    background: white;
}

.divm-brand-text {
    display: flex;
    flex-direction: column;
}

    .divm-brand-text strong {
        font-size: 21px;
        letter-spacing: 0.3px;
    }

    .divm-brand-text small {
        color: #94a3b8;
        font-size: 10px;
    }*/


/* =========================================================
   USER MINI PROFILE
   ========================================================= */

/*.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
}

.sidebar-user-avatar img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .sidebar-user-info strong {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sidebar-user-info span {
        font-size: 11px;
        color: #94a3b8;
    }*/


/* =========================================================
   SIDEBAR SCROLL
   ========================================================= */

/*.sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 5px 12px 15px;
}

    .sidebar-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-scroll::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 10px;
    }*/


/* =========================================================
   MENU
   ========================================================= */

/*.divm-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-section {
    padding: 18px 12px 7px;
}

    .menu-section span {
        color: #64748b;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.8px;
    }

.menu-item {
    margin-bottom: 3px;
}

.menu-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 44px;
    padding: 10px 13px;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13.5px;
    transition: all 0.2s ease;
}

    .menu-link i {
        width: 20px;
        text-align: center;
        font-size: 15px;
    }

    .menu-link:hover {
        background: var(--divm-sidebar-hover);
        color: #fff;
        transform: translateX(2px);
    }

    .menu-link.active {
        background: var(--divm-sidebar-active);
        color: #fff;
        box-shadow: 0 4px 12px rgba(37,99,235,0.25);
    }

    .menu-link small {
        margin-left: auto;
        color: #64748b;
        font-size: 9px;
    }

    .menu-link.coming-soon {
        opacity: 0.7;
    }*/


/* =========================================================
   SIDEBAR BOTTOM
   ========================================================= */

/*.sidebar-bottom {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.logout-link:hover {
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
}*/


/* =========================================================
   MAIN
   ========================================================= */

/*.divm-main {
    width: calc(100% - var(--divm-sidebar-width));
    margin-left: var(--divm-sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}*/


/* =========================================================
   TOPBAR
   ========================================================= */

/*.divm-topbar {
    height: 78px;
    background: white;
    border-bottom: 1px solid var(--divm-border);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-page-title {
    display: flex;
    flex-direction: column;
}

.page-title-main {
    font-weight: 700;
    font-size: 18px;
}

.page-title-subtitle {
    color: var(--divm-muted);
    font-size: 11px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--divm-border);
    background: white;
    border-radius: 10px;
    color: #64748b;
    position: relative;
    transition: 0.2s;
}

    .topbar-icon-btn:hover {
        background: #f1f5f9;
        color: var(--divm-primary);
    }

.notification-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 8px;
    padding-left: 15px;
    border-left: 1px solid var(--divm-border);
    cursor: pointer;
}

.topbar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.topbar-user-info {
    display: flex;
    flex-direction: column;
}

    .topbar-user-info strong {
        font-size: 13px;
    }

    .topbar-user-info span {
        font-size: 10px;
        color: var(--divm-muted);
    }

.user-chevron {
    color: #94a3b8;
    font-size: 10px;
}*/


/* =========================================================
   CONTENT
   ========================================================= */

/*.divm-content {
    flex: 1;
    padding: 28px;
    background: var(--divm-background);
}*/


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

/*.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--divm-border);
    background: white;
    border-radius: 10px;
    color: var(--divm-text);
}*/


/* =========================================================
   SIDEBAR CLOSE
   ========================================================= */

/*.sidebar-close {
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 18px;
}*/


/* =========================================================
   COMING SOON
   ========================================================= */

/*.coming-soon-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--divm-primary);
    font-size: 25px;
}*/


/* =========================================================
   RESPONSIVE
   ========================================================= */

/*@media (max-width: 991.98px) {

    .divm-sidebar {
        transform: translateX(-100%);
    }

        .divm-sidebar.show {
            transform: translateX(0);
            box-shadow: 8px 0 30px rgba(0,0,0,0.15);
        }

    .divm-main {
        width: 100%;
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .topbar-user-info,
    .user-chevron {
        display: none;
    }

    .divm-topbar {
        padding: 0 18px;
    }

    .divm-content {
        padding: 20px;
    }
}


@media (max-width: 575.98px) {

    .divm-topbar {
        height: 68px;
    }

    .page-title-subtitle {
        display: none;
    }

    .page-title-main {
        font-size: 16px;
    }

    .topbar-icon-btn {
        width: 36px;
        height: 36px;
    }

    .topbar-avatar {
        width: 34px;
        height: 34px;
    }

    .divm-content {
        padding: 15px;
    }
}*/

/* =========================================================
   TEACHER DASHBOARD
   ========================================================= */

/*.teacher-dashboard {
    max-width: 1500px;
    margin: 0 auto;
}*/


/* Welcome */

/*.dashboard-welcome {
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.welcome-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .75;
}

.dashboard-welcome h1 {
    margin: 7px 0;
    font-size: 30px;
    font-weight: 700;
}

.dashboard-welcome p {
    margin: 0;
    opacity: .85;
}

.welcome-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: rgba(255,255,255,.12);
    font-size: 40px;
}*/


/* Statistics */

/*.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.dashboard-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .2s;
}

    .dashboard-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(15,23,42,.07);
    }

.stat-icon,
.quick-action-icon,
.module-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 19px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

    .stat-content span {
        color: #64748b;
        font-size: 12px;
    }

    .stat-content strong {
        font-size: 24px;
        margin: 2px 0;
    }

    .stat-content small {
        color: #94a3b8;
        font-size: 10px;
    }*/


/* Colors */

/*.blue {
    background: #eff6ff;
    color: #2563eb;
}

.green {
    background: #ecfdf5;
    color: #16a34a;
}

.orange {
    background: #fff7ed;
    color: #ea580c;
}

.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.cyan {
    background: #ecfeff;
    color: #0891b2;
}

.pink {
    background: #fdf2f8;
    color: #db2777;
}*/


/* Dashboard Grid */

/*.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}*/


/* Panels */

/*.dashboard-panel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .panel-header h3 {
        font-size: 17px;
        margin: 0 0 3px;
        font-weight: 700;
    }

    .panel-header p {
        margin: 0;
        color: #64748b;
        font-size: 11px;
    }

.panel-header-icon {
    color: #94a3b8;
    font-size: 20px;
}*/


/* Quick Actions */

/*.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: .2s;
}

    .quick-action:hover {
        background: #f8fafc;
        color: #2563eb;
    }

.quick-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
}

.quick-action > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.quick-action strong {
    font-size: 13px;
}

.quick-action span {
    color: #94a3b8;
    font-size: 10px;
}

.quick-action .arrow {
    color: #cbd5e1;
    font-size: 11px;
}*/


/* Empty Activity */

/*.activity-empty {
    text-align: center;
    padding: 20px 10px;
}

.activity-empty-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
}

.activity-empty h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.activity-empty p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}*/


/* Modules */

/*.modules-panel {
    margin-bottom: 20px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.module-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 14px;
    text-decoration: none;
    color: #1e293b;
    transition: .2s;
}

    .module-card:hover {
        border-color: #bfdbfe;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(15,23,42,.06);
    }

.module-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    margin-bottom: 12px;
}

.module-card strong {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

.module-card span {
    color: #94a3b8;
    font-size: 10px;
}

.module-card.coming-soon {
    opacity: .65;
}*/


/* Responsive */

/*@media (max-width: 1200px) {

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 768px) {

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome {
        padding: 23px;
    }

        .dashboard-welcome h1 {
            font-size: 24px;
        }

    .welcome-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 500px) {

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome {
        min-height: 150px;
    }

    .welcome-icon {
        display: none;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }
}*/

/* =========================================================
   SIDEBAR ACCORDION
   ========================================================= */

/*.sidebar-section {
    list-style: none;
    margin-bottom: 4px;
}

.sidebar-section-button {
    width: 100%;
    border: 0;
    background: transparent;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: all .2s ease;
}

    .sidebar-section-button span {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .sidebar-section-button span i {
            width: 20px;
            text-align: center;
        }

    .sidebar-section-button:hover {
        background: rgba(255,255,255,.05);
        color: #e2e8f0;
    }

.section-arrow {
    font-size: 9px;
    transition: transform .2s ease;
}

.sidebar-section-button.open {
    color: #fff;
}

    .sidebar-section-button.open .section-arrow {
        transform: rotate(180deg);
    }*/


/* SUBMENU */

/*.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease;
    opacity: 0;
}

    .sidebar-submenu.open {
        max-height: 600px;
        opacity: 1;
        padding-bottom: 5px;
    }*/


    /* Submenu items */

    /*.sidebar-submenu .menu-link {
        margin-left: 8px;
        padding-left: 18px;
        min-height: 40px;
        font-size: 13px;
    }

        .sidebar-submenu .menu-link i {
            font-size: 13px;
        }

        .sidebar-submenu .menu-link.active {
            background: rgba(37,99,235,.25);
            color: #fff;
            box-shadow: none;
        }*/