/* UniHub - Light Ice-Blue Modern Design System & Mobile First Polish */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Main Background & Surfaces */
    --bg-main: #f0f6ff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-sidebar: #ffffff;
    --border-light: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-active: #93c5fd;

    /* Primary Accent Colors */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --primary-active-bg: #e0f2fe;

    /* Badge Colors */
    --badge-blue-bg: #e0f2fe;
    --badge-blue-text: #0369a1;
    --badge-green-bg: #dcfce7;
    --badge-green-text: #15803d;
    --badge-amber-bg: #fef3c7;
    --badge-amber-text: #b45309;
    --badge-rose-bg: #ffe4e6;
    --badge-rose-text: #be123c;
    --badge-gray-bg: #f1f5f9;
    --badge-gray-text: #64748b;

    /* Typography */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Radii & Layout */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --sidebar-width: 250px;
    --header-height: 64px;
    --shadow-subtle: 0 2px 10px rgba(37, 99, 235, 0.04);
    --shadow-card: 0 4px 16px rgba(148, 163, 184, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* App Container */
#app-root {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling (Desktop Only) */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-light);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 20px 8px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.brand-info h1 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.brand-info span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    margin-top: 10px;
    flex: 1;
}

.nav-item button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.nav-item button:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.nav-item.active button {
    background: var(--primary-active-bg);
    color: var(--primary);
    font-weight: 700;
}

.sidebar-motivation {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: var(--radius-lg);
    padding: 14px;
    margin-top: auto;
    border: 1px solid #bfdbfe;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sidebar-motivation-text {
    font-size: 11px;
    color: #1e40af;
    font-weight: 600;
    line-height: 1.4;
}

/* Main Content Wrapper */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header {
    height: var(--header-height);
    background: rgba(240, 246, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-greeting h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.header-greeting p {
    font-size: 11.5px;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher-btn {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.lang-switcher-btn:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

.header-date {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text-muted);
    font-size: 15px;
}

.icon-btn-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 3px 10px 3px 3px;
    border-radius: 30px;
    cursor: pointer;
}

.user-avatar-pill {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-body {
    padding: 24px;
    flex: 1;
}

/* White Card Containers */
.white-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-subtle);
}

.metric-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.metric-data span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

.metric-data h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

/* Badges & Messenger Pills */
.badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.badge-lecture { background: var(--badge-blue-bg); color: var(--badge-blue-text); }
.badge-practice { background: var(--badge-green-bg); color: var(--badge-green-text); }
.badge-completed { background: var(--badge-green-bg); color: var(--badge-green-text); }
.badge-wip { background: var(--badge-amber-bg); color: var(--badge-amber-text); }
.badge-pending { background: var(--badge-rose-bg); color: var(--badge-rose-text); }

/* Messenger Custom Badges */
.badge-telegram { background: #e0f2fe; color: #0088cc; border: 1px solid #7dd3fc; }
.badge-whatsapp { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.badge-viber { background: #f5f3ff; color: #6d28d9; border: 1px solid #ddd6fe; }

/* Buttons */
.btn {
    padding: 9px 16px;
    border-radius: var(--radius-md);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

/* Sub-tabs Bar */
.sub-tabs-bar {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    margin-bottom: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sub-tab-btn {
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.sub-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box-large {
    max-width: 860px;
    width: 95%;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 17px;
    font-weight: 800;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 13px;
    outline: none;
}

/* Calendar Grid Fix */
.calendar-widget {
    padding: 4px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 4px 0;
}

.calendar-day {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 2px;
    border-radius: 8px;
    color: var(--text-main);
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.15s ease;
}

.calendar-day:hover {
    background: #e2e8f0;
}

.calendar-day.muted {
    color: #cbd5e1;
    background: transparent;
}

.calendar-day.active {
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Auth Flow & Social Registration Buttons */
.social-signup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-social {
    width: 100%;
    padding: 11px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-social-tg {
    background: #0088cc;
    color: #ffffff;
    border-color: #0077b3;
}

.btn-social-google {
    background: #ffffff;
    color: #1e293b;
    border-color: #cbd5e1;
}

.btn-social-wa {
    background: #25d366;
    color: #ffffff;
    border-color: #1ea952;
}

.btn-social-vb {
    background: #7360f2;
    color: #ffffff;
    border-color: #5c47e0;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}

.auth-divider span {
    padding: 0 10px;
}

.social-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.btn-social-icon {
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: #f8fafc;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-social-icon:hover {
    background: #eff6ff;
    border-color: #2563eb;
    transform: translateY(-1px);
}

/* Digital Library Styling */
.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.book-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-subtle);
}

.book-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-active);
}

.book-cover {
    height: 100px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
    padding: 10px;
    position: relative;
}

.book-cover .icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.book-cover .faculty-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 9.5px;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 700;
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    z-index: 200;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-item.active {
    color: #2563eb;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-wrapper { margin-left: 0; padding-bottom: 74px; }
    .top-header { padding: 0 14px; height: 58px; }
    .header-greeting h2 { font-size: 16px; }
    .header-subgreeting, .header-date { display: none; }
    .content-body { padding: 14px; }
    .mobile-nav { display: flex; }
    .white-card { padding: 14px; border-radius: var(--radius-md); margin-bottom: 12px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .dashboard-main-grid, .dashboard-bottom-grid, .modules-main-grid, .library-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* ==========================================================================
   SaaS 2026 Authentication System Styling (Ice-Blue Theme)
   ========================================================================== */

.auth-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 20px 14px;
}

.auth-card-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.07);
    transition: all 0.3s ease;
}

.auth-card-box-wide {
    max-width: 540px;
}

.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 16px;
}

.auth-header {
    margin-bottom: 22px;
}

.auth-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.auth-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.form-group-saas {
    margin-bottom: 16px;
    position: relative;
}

.form-group-saas label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.form-input-saas {
    width: 100%;
    padding: 11px 14px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 13.5px;
    outline: none;
    transition: all 0.2s ease;
}

.form-input-saas:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-input-saas.is-invalid {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}

.form-input-saas.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.inline-field-error {
    font-size: 11.5px;
    color: #ef4444;
    font-weight: 600;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.input-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-password-wrapper .form-input-saas {
    padding-right: 42px;
}

.btn-eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s;
}

.btn-eye-toggle:hover {
    color: #1e293b;
}

/* Password Policy Checklist */
.password-policy-checklist {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.password-policy-item {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.password-policy-item .check-icon {
    font-size: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: all 0.2s ease;
}

.password-policy-item.valid {
    color: #166534;
}

.password-policy-item.valid .check-icon {
    background: #22c55e;
    color: #ffffff;
}

/* Future Social Messenger Buttons (Disabled State) */
.btn-social-future {
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.btn-social-future.disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.8;
}

.badge-soon {
    background: #e2e8f0;
    color: #475569;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    border: 1px solid #cbd5e1;
}

/* Button Loading Spinner */
.spinner-sm {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: saas-spin 0.8s linear infinite;
}

@keyframes saas-spin {
    to { transform: rotate(360deg); }
}

/* Auth Alert Box */
.auth-alert-box {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.auth-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.auth-alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.auth-alert-info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

/* Notifications & Admin Portal Styling */
.notif-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.notif-card.unread {
    border-left: 4px solid #2563eb;
    background: #f8fafc;
}

.notif-unread-dot {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    display: inline-block;
}

/* Admin Management Tables */
.admin-table-container {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.admin-table th {
    background: #f8fafc;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

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

/* Program Card for Applicants */
.program-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: #93c5fd;
}

/* Meeting Provider Badges */
.btn-meeting-zoom {
    background: #2d8cff;
    color: #ffffff;
    border: none;
}

.btn-meeting-zoom:hover {
    background: #1a73e8;
}

.btn-meeting-meet {
    background: #00ac47;
    color: #ffffff;
    border: none;
}

.btn-meeting-meet:hover {
    background: #008d3a;
}



