/* Sidebar Header + Collapse Button */
.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.3px;
}

.sidebar-toggle {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.sidebar-toggle i {
    font-size: 18px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.25s ease;
}

.sidebar-link:hover {
    background: #f3f4f6;
    color: #111827;
    transform: translateX(4px);
}