body {
    background: #f4f6f9;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    height: 100vh;
    background: linear-gradient(180deg, #4e73df, #224abe);
    color: white;
    transition: 0.3s;
    position: sticky;
}




/* Sticky / Fixed Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 16.6667%;   /* col-md-2 width */
    overflow-y: auto;
    background: linear-gradient(180deg, #4e73df, #224abe);
    color: #fff;
}

/* Main content shift */
.col-md-10 {
    margin-left: 16.6667%;
}













.sidebar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.sidebar a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateX(5px);
}

.Activebtn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateX(6px);
}

.sidebar .collapse a {
    padding-left: 40px;
    font-size: 14px;
}

/* Cards */
.dashboard-card {
    border-radius: 15px;
    color: white;
    padding: 25px;
    transition: 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.card1 { background: linear-gradient(45deg, #36d1dc, #5b86e5); }
.card2 { background: linear-gradient(45deg, #ff9966, #ff5e62); }
.card3 { background: linear-gradient(45deg, #56ab2f, #a8e063); }

/* Navbar */
.topbar {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Toggle Button */
#toggleBtn {
    cursor: pointer;
}

.main-card{
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}


.custom-head {
    background-color: blue!important;  
}


.status-badge{
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
}

.pending{ background:#fff3cd; color:#856404; }
.active{ background:#d4edda; color:#155724; }
.rejected{ background:#f8d7da; color:#721c24; }

.action-btn{
    border-radius:20px;
}