.admin-dashboard {
    padding: 25px;
    background: #f4f8ff;
    min-height: 100vh;
}

.dashboard-header {
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: white;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-header h2 {
    margin: 0;
    font-weight: 700;
}

.dashboard-header p {
    margin: 6px 0 0;
    opacity: .9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, .08);
}

.stat-card h4 {
    margin: 0;
    font-weight: 700;
    color: #0b2e63;
}

.stat-card p {
    margin: 0;
    color: #6c757d;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.bg-blue { background: #0d6efd; }
.bg-green { background: #198754; }
.bg-purple { background: #6f42c1; }
.bg-orange { background: #fd7e14; }

.dashboard-section {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, .08);
}

.dashboard-section h4 {
    color: #0b2e63;
    font-weight: 700;
    margin-bottom: 20px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.module-card {
    border: 1px solid #e5efff;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: .2s;
    background: #ffffff;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: #0d6efd;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .15);
}

.module-icon {
    width: 46px;
    height: 46px;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.module-card h5 {
    color: #0b2e63;
    font-weight: 700;
    margin-bottom: 6px;
}

.module-card p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}
.admin-table {
    margin: 0;
}

.admin-table thead {
    background: #f1f5ff;
}

.admin-table thead th {
    border: none;
    color: #0b2e63;
    font-weight: 700;
    padding: 16px;
}

.admin-table tbody td {
    vertical-align: middle;
    padding: 16px;
    border-color: #edf2ff;
}

.admin-table tbody tr:hover {
    background: #f8fbff;
}

.dashboard-section {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, .08);
}

.platform-admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f4f8ff;
}

.platform-sidebar {
    width: 260px;
    background: #0b2e63;
    color: white;
    padding: 20px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 18px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    padding: 13px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .2s;
    font-weight: 500;
}

.sidebar-link i {
    width: 22px;
    text-align: center;
}

.sidebar-link:hover {
    background: rgba(255,255,255,.12);
    color: white;
}

.sidebar-link.active {
    background: white;
    color: #0b2e63;
}

.platform-admin-content {
    flex: 1;
    min-width: 0;
}

.auth-page {
    min-height: 100vh;
    background: #f4f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.auth-card {
    max-width: 480px;
    width: 100%;
    background: white;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13, 110, 253, .12);
}

.auth-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eaf2ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.auth-card h1 {
    color: #0b2e63;
    font-weight: 800;
}

.auth-subtitle {
    color: #6c757d;
    margin-bottom: 22px;
}