/* ================= FORCE UPDATE: MODERN DASHBOARD ================= */

/* Siguraduhin na ang body ay hindi madilim */
.dashboard-body {
    background-color: #f1f5f9 !important;
    background-image: none !important; 
    margin: 0;
}

/* ========= TOPNAV CENTERING ========= */
.topnav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: white !important;
    padding: 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.08) !important;
}

.nav-center h2 {
    margin: 0 !important;
    color: #2563eb !important;
    font-weight: 700 !important;
    text-align: center !important;
    font-size: 1.5rem !important;
}

/* Container para sa Grid */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
}

/* ETO ANG BANNER CARD (Ang puting box) */
.banner-card {
    background: #ffffff !important; 
    border-radius: 24px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: transform 0.3s ease !important;
    border: 1px solid #e2e8f0 !important;
}

.banner-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 35px rgba(0,0,0,0.15) !important;
}

/* BLOB DESIGN */
.icon-blob {
    width: 100px !important;
    height: 100px !important;
    background: #dbeafe !important; /* Light Blue */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 25px !important;
    animation: blob-bounce 8s infinite alternate !important;
}

/* BLOB COLORS */
.color-2 { background: #dcfce7 !important; } /* Light Green */
.color-3 { background: #fef9c3 !important; } /* Light Yellow */
.color-4 { background: #fee2e2 !important; } /* Light Red (Session) */
.color-5 { background: #e0e7ff !important; } /* Light Indigo (Self-Service) */

.main-icon {
    font-size: 45px !important;
    color: #2563eb !important;
}

/* Icon specific colors for variety */
.color-5 .main-icon { color: #4f46e5 !important; }

.banner-card h3 {
    margin: 10px 0 !important;
    font-size: 1.4rem !important;
    color: #1e293b !important;
    font-weight: 700 !important;
}

.banner-card p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
}

/* BUTTONS SA LOOB NG CARD */
.card-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
}

.card-links a {
    text-decoration: none !important;
    padding: 10px 20px !important;
    background: #f1f5f9 !important;
    color: #2563eb !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: 0.3s !important;
    border: 1px solid transparent !important;
}

.card-links a:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

.logout-link {
    color: #ef4444 !important;
    background: #fee2e2 !important;
}

.logout-link:hover {
    background: #ef4444 !important;
    color: white !important;
}

/* ANIMATION PARA SA BLOB */
@keyframes blob-bounce {
    from { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    to { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
}