/* ===============================
   Sidebar Layout
================================ */
.sidebar {
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    min-height: 100vh;
    padding: 1rem;
    font-size: 14px;
}

/* Sidebar title */
.sidebar-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* ===============================
   Menu Items
================================ */
.sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 6px;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Hover (colorless but elegant) */
.sidebar .nav-link:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Active menu item (button look) */
.sidebar .nav-link.active {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Danger link */
.sidebar .nav-link.text-danger {
    color: #dc2626;
}

.sidebar .nav-link.text-danger:hover {
    background-color: #fee2e2;
}

/* Remove Bootstrap underline */
.sidebar .nav-link {
    text-decoration: none;
}
