/* ========================
   GLOBAL
======================== */
body {
    margin: 0;
    background: #0f172a;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
}

/* ========================
   SIDEBAR
======================== */
.sidebar {
    width: 240px;
    height: 100vh;
    background: #0b1120;
    position: fixed;
    padding: 20px;
    border-right: 1px solid #1e293b;
}

.logo {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 13px;
    padding-top: 10px;
}

.nav-link {
    color: #fff !important;
}
.nav-link.active {
   color: rgb(251 146 60) !important;
    font-weight: 600;
    background-color: rgb(251 146 60 / 25%) !important;
   
}
.nav-link:hover, .nav-link.active { 
   color: rgb(251 146 60) !important;
    font-weight: 600;
    background-color: rgb(251 146 60 / 25%) !important;
    
}



/* ========================
   MAIN AREA
======================== */
.main {
    margin-left: 240px;
    padding: 30px;
}


/* ========================
   TOPBAR
======================== */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.admin-badge {
    background: #ff7a18;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}


/* ========================
   HERO BANNER
======================== */
.hero-banner {
    height: 200px;
    border-radius: 20px;
    overflow: hidden;

  
    position: relative;
}

/* Glass Effect Overlay */
.hero-overlay {
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;

  
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85),
        rgba(30, 41, 59, 0.6)
    );
}

.hero-banner h2 {
    font-weight: 600;
}

.hero-banner p {
    color: #cbd5e1;
}














/* ========================
   CARDS
======================== */
.card-dark {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #334155;
}

/* ========================
   DASHBOARD STAT CARDS
======================== */
.stat-card {
    background: #1f2a40;
    border: 1px solid #2e3b55;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #334155;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.stat-card small {
    color: #94a3b8;
    font-size: 13px;
}

/* ========================
   ICON BOXES
======================== */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Soft Colors */
.bg-primary-soft { background: rgba(59,130,246,0.15); }
.bg-success-soft { background: rgba(34,197,94,0.15); }
.bg-warning-soft { background: rgba(251,191,36,0.15); }
.bg-danger-soft  { background: rgba(239,68,68,0.15); }
.bg-info-soft    { background: rgba(6,182,212,0.15); }
.bg-purple-soft  { background: rgba(168,85,247,0.15); }

/* ========================
   ALERTS
======================== */
.alert-item {
    background: #263143;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #334155;
}

/* ========================
   ACTIVITY
======================== */
.activity-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.activity-scroll::-webkit-scrollbar {
    width: 6px;
}

.activity-scroll::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

.activity-item {
    background: #263143;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #334155;
}

.activity-item small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

/* ========================
   SCHEDULE
======================== */
.schedule-item {
    background: #263143;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #334155;
}

/* ========================
   PROGRESS BARS
======================== */
.progress {
    height: 8px;
    border-radius: 10px;
    background: #334155;
}

.progress-bar {
    border-radius: 10px;
}


