/* Fonts are now loaded in index.php */

:root {
    /* MeSchoolApp Standard Palette */
    --primary: #1B4FED;
    --primary-dark: #1240CC;
    --primary-light: #EEF3FF;
    --secondary: #1E293B;
    --accent: #F59E0B;
    
    /* Adena Light Semantic Colors */
    --soft-blue: #eff6ff;
    --soft-green: #f0fdf4;
    --soft-orange: #fff7ed;
    --soft-rose: #fff1f2;
    --soft-violet: #f5f3ff;
    --soft-cyan: #ecfeff;
    --soft-amber: #fffbeb;
    
    --icon-blue: #3b82f6;
    --icon-green: #10b981;
    --icon-orange: #f97316;
    --icon-rose: #f43f5e;
    --icon-violet: #8b5cf6;
    --icon-cyan: #06b6d4;
    --icon-amber: #f59e0b;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Backgrounds */
    --bg-main: #F8FAFF;
    --bg-card: #FFFFFF;
    --bg-nav: #ffffff;
    
    /* Typography */
    --text-main: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-on-primary: #ffffff;
    
    /* Spacing & Borders */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --border-color: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 24px rgba(27,79,237,0.08);
    --shadow-lg: 0 8px 40px rgba(27,79,237,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: var(--font-size, 16px);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family, 'Plus Jakarta Sans', sans-serif);
    font-size: var(--font-size, 16px);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* Hide Scrollbars */
::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-container {
    background: var(--bg-main);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

.page-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 100px;
    background: var(--bg-main);
    -webkit-overflow-scrolling: touch;
}

/* --- RESPONSIVE LAYOUT (MOBILE-FIRST) --- */
@media (min-width: 1024px) {
    /* Premium Desktop Layout: Sidebar + Centered Mobile Content */
    .desktop-wrapper {
        display: grid;
        grid-template-columns: 280px 1fr;
        height: 100vh;
        overflow: hidden;
        background: #f1f5f9; /* Contrast background for the centered content */
    }
    
    body.public-page .desktop-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f1f5f9;
        height: 100vh;
    }

    .app-container {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        background: var(--bg-main);
        position: relative;
    }

    body.public-page .app-container {
        height: 90vh;
        border-radius: 32px;
        max-height: 850px;
    }

    .page-content {
        padding: 30px 20px 100px;
        width: 100%;
        flex: 1;
    }
    
    /* Sembunyikan elemen PC di frame mobile-centric */
    .header-pc {
        display: none !important;
    }
    
    /* Tunjukkan elemen mobile (header/nav) di dalam frame desktop */
    .app-header, .bottom-nav {
        display: flex !important;
        width: 100% !important;
    }
}

/* Fix Filter Form Date Overflow on Mobile */
@media (max-width: 480px) {
    .filter-form {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .filter-item:last-child {
        flex: 100% !important;
        min-width: 100% !important;
        margin-top: 5px !important;
    }
    .filter-item input[type="date"] {
        width: 100% !important;
        text-align: center !important;
    }
    .filter-divider:nth-last-child(2) {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    /* Gaya Sidebar PC */
    .sidebar-pc {
        background: #ffffff;
        border-right: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        height: 100vh;
        box-shadow: 4px 0 24px rgba(0,0,0,0.02);
        z-index: 1000;
    }
    .sidebar-header {
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid #f8fafc;
    }
    .logo-box {
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    .brand-info h2 {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 2px;
    }
    .brand-info p {
        font-size: 0.7rem;
        color: var(--text-muted);
        font-weight: 600;
    }
    .sidebar-menu {
        flex: 1;
        padding: 20px 15px;
        overflow-y: auto;
    }
    .menu-label {
        font-size: 0.65rem;
        font-weight: 800;
        color: var(--text-muted);
        margin: 20px 0 10px 10px;
        letter-spacing: 1px;
    }
    .sidebar-menu .menu-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 14px 15px;
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 600;
        border-radius: 12px;
        margin-bottom: 5px;
        transition: all 0.3s;
    }
    .sidebar-menu .menu-item i {
        font-size: 1.25rem;
    }
    .sidebar-menu .menu-item:hover {
        background: #f8fafc;
        color: var(--primary);
        transform: translateX(5px);
    }
    .sidebar-menu .menu-item.active {
        background: var(--soft-blue);
        color: var(--primary);
        font-weight: 700;
    }

    /* Gaya Card Menu di Dashboard Desktop (Sperti Gambar) */
    .floating-menu-card .menu-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
    .floating-menu-card .menu-item {
        display: grid !important;
        grid-template-columns: 60px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 0px 15px !important;
        align-items: center !important;
        text-align: left !important;
        background: white;
        padding: 15px;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        text-decoration: none !important;
    }
    .floating-menu-card .menu-item .menu-icon {
        grid-row: 1 / span 3;
        width: 60px !important;
        height: 60px !important;
        margin: 0 !important;
        border-radius: 16px !important;
        font-size: 1.8rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .floating-menu-card .menu-item .menu-label {
        align-self: end;
        font-size: 0.9rem !important;
        font-weight: 850 !important;
        color: #1e293b !important;
        margin-bottom: 2px !important;
    }
    .floating-menu-card .menu-item .menu-desc {
        display: block !important;
        font-size: 0.65rem !important;
        color: #64748b !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    .floating-menu-card .menu-item div:nth-child(4) {
        align-self: start;
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        margin-top: 0 !important;
    }
    .floating-menu-card .menu-item:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: #e2e8f0;
    }
    .sidebar-footer {
        padding: 20px;
        border-top: 1px solid #f1f5f9;
    }
    .logout-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px;
        background: #fef2f2;
        color: #ef4444;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 700;
        transition: all 0.3s;
    }
    .logout-btn:hover {
        background: #fee2e2;
        transform: translateY(-2px);
    }

    /* Gaya Header PC */
    .header-pc {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e2e8f0;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-pc .header-left h1 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 5px;
    }
    .header-pc .header-date {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .header-pc .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .action-btn {
        width: 45px;
        height: 45px;
        background: var(--soft-blue);
        color: var(--primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        text-decoration: none;
        transition: all 0.3s;
    }
    .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }
    .profile-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 15px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .profile-info-text {
        text-align: right;
    }
    .profile-info-text .name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-main);
    }
    .profile-info-text .role {
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--text-muted);
    }
    .profile-card img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

@media (max-width: 1023px) {
    /* Tampilan Mobile Asal */
    .menu-desc {
        display: none !important;
    }
    .desktop-wrapper {
        display: block;
    }
    .sidebar-pc, .header-pc {
        display: none !important;
    }
    body {
        overflow-y: auto;
    }
    .app-container {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    .page-content {
        overflow-y: visible;
        flex: none;
        padding: 0 15px 100px;
    }
    .bottom-nav {
        max-width: 100%;
    }
}

/* Typography Helpers */
h1, h2, h3 { font-weight: 700; color: var(--text-main); }
p { color: var(--text-muted); font-size: 0.85rem; }

/* Components */

/* Global Utilities */
.list-number-badge {
    width: 28px;
    height: 28px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 800;
    flex-shrink: 0;
}

/* App Header */
.app-header {
    padding: 20px;
    background: var(--bg-nav);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f1f5f9;
}

.app-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

.profile-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* max-width is handled in media queries */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #f1f5f9;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-item span {
    color: #000000;
}

.nav-item i {
    font-size: 1.4rem;
}

.nav-home {
    transform: translateY(-15px);
}

.home-icon-bg {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.nav-home.active .home-icon-bg {
    background: var(--primary-dark);
}

.nav-item.active {
    color: var(--primary);
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.2;
}

/* For stat cards with icons */
.stat-card-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 18px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Module Grid */
.module-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
    border: 1px solid #f1f5f9;
}

.module-item:active {
    transform: scale(0.98);
}

.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.module-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.module-info p {
    font-size: 0.7rem;
}

/* AI Suggestion Card */
.ai-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    position: relative;
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-google {
    background: white;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Animations */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-30px); }
}

/* --- ADENA LIGHT THEME (WHITE CARDS, COLORED ICONS) --- */

/* 1. Global Card Overrides - Clean White Cards */
.card, .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover, .stat-card:hover {
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-2px);
}

/* 2. Stats Grid - Light Pastel Backgrounds */
.stats-grid > * {
    color: var(--text-main) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

/* Optimized Dashboard Menu System */
.floating-menu-card {
    background: white;
    margin: -60px 15px 25px; /* Reduced side margins */
    border-radius: 24px; /* More organized radius */
    padding: 20px 15px; /* Organized inner spacing */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.03);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 5px; /* Systematically reduced gap (12px vertical, 5px horizontal) */
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.2s;
    padding: 5px 2px; /* Tight padding for row reduction */
}

.menu-item:active {
    transform: scale(0.95);
}

.menu-icon {
    width: 40px; /* Slightly smaller for tighter rows */
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 5px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.menu-label {
    font-size: 11px !important; /* Following the new proportional scale */
    font-weight: 700 !important;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.2px;
    text-transform: lowercase !important;
}

.menu-desc {
    display: none !important; /* Hide descriptions for extreme compactness if requested */
}

.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.5) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Adena Light Pastel Card Backgrounds */
.stat-blue { background: var(--soft-blue) !important; }
.stat-green { background: var(--soft-green) !important; }
.stat-orange { background: var(--soft-orange) !important; }
.stat-rose { background: var(--soft-rose) !important; }
.stat-violet { background: var(--soft-violet) !important; }
.stat-cyan { background: var(--soft-cyan) !important; }
.stat-amber { background: var(--soft-amber) !important; }

/* Icon Colors within Pastel Cards */
.stat-blue .stat-icon-wrapper i { color: var(--icon-blue) !important; }
.stat-green .stat-icon-wrapper i { color: var(--icon-green) !important; }
.stat-orange .stat-icon-wrapper i { color: var(--icon-orange) !important; }
.stat-rose .stat-icon-wrapper i { color: var(--icon-rose) !important; }
.stat-violet .stat-icon-wrapper i { color: var(--icon-violet) !important; }
.stat-cyan .stat-icon-wrapper i { color: var(--icon-cyan) !important; }
.stat-amber .stat-icon-wrapper i { color: var(--icon-amber) !important; }

/* 3. Text Adjustments for Light Theme */
.stat-label {
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 0.75rem !important;
}

.stat-value {
    color: var(--text-main) !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
}

/* 4. Enhancement for Section Cards */
.page-content > .card, 
.page-content > div > .card,
.page-content > div > div > .card {
    background: #ffffff;
    border-radius: var(--radius-lg) !important;
    padding: 24px !important;
    margin-bottom: 25px !important;
}

/* AI Card Special Theme - Adena Style */
.ai-card {
    background: var(--soft-violet) !important;
    border: 1px solid #ddd6fe !important;
    border-radius: 16px !important;
}

.ai-badge {
    background: var(--icon-violet) !important;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

/* Welcome Card Role-Specific Themes (Vibrant & Professional Gradients) */
.welcome-pentadbir {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3) !important;
}
.welcome-pentadbir, 
.welcome-pentadbir h3, 
.welcome-pentadbir p, 
.welcome-pentadbir div, 
.welcome-pentadbir span, 
.welcome-pentadbir i { 
    color: #000000 !important; 
}

.welcome-guru {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3) !important;
}
.welcome-guru h3 { color: white !important; }

.welcome-akp, .welcome-admin_sekolah {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3) !important;
}

.welcome-superadmin {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3) !important;
}

.welcome-pemantau {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3) !important;
}

.welcome-pelajar {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3) !important;
}

.welcome-ibubapa {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3) !important;
}

.welcome-keselamatan {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3) !important;
}

.welcome-kebersihan {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3) !important;
}

.welcome-kantin {
    background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3) !important;
}

.welcome-pelawat {
    background: linear-gradient(135deg, #64748B 0%, #475569 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.3) !important;
}

.welcome-pentadbir h3, .welcome-guru h3, .welcome-akp h3, .welcome-admin_sekolah h3, .welcome-superadmin h3, .welcome-pemantau h3, .welcome-pelajar h3, .welcome-ibubapa h3, .welcome-keselamatan h3, .welcome-kebersihan h3, .welcome-kantin h3, .welcome-pelawat h3 { color: white !important; }
.welcome-pentadbir p, .welcome-guru p, .welcome-akp p, .welcome-admin_sekolah p, .welcome-superadmin p, .welcome-pemantau p, .welcome-pelajar p, .welcome-ibubapa p, .welcome-keselamatan p, .welcome-kebersihan p, .welcome-kantin p, .welcome-pelawat p { color: rgba(255,255,255,0.9) !important; }

/* Class global untuk mengekalkan huruf besar bagi akronim seperti RPH dan DSKP */
.text-uppercase {
    text-transform: uppercase !important;
}
