/* Sidebar container */
.dashboard-sidebar {
    width: 220px;
    background-color: #1e293b;   /* Dark navy */
    color: #fff;
    min-height: 100vh;
    padding: 15px;
}

/* Sidebar title */
.dashboard-sidebar h5 {
    color: #f8fafc;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Sidebar links */
.sidebar-link {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover */
.sidebar-link:hover {
    background-color: #334155;   /* Darker hover */
    color: #fff;
}

/* Active */
.sidebar-link.active {
    background-color: #3b82f6;   /* Blue highlight */
    color: #fff;
    font-weight: 600;
}

/* Logout */
.sidebar-link.text-danger {
    color: #f87171 !important;   /* Soft red */
}
.sidebar-link.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.2);
}

/* Icons */
.sidebar-link i {
    margin-right: 8px;
    font-size: 1rem;
}
