.sidebar-link {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: inherit;
    text-decoration: none;
}

.sidebar-link.active {
    background-color: #1d4ed8;
    color: #ffffff;
}

.sidebar-link:hover:not(.active) {
    background-color: rgba(29, 78, 216, 0.5);
    color: #ffffff;
}

.dashboard-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sidebar-gradient {
    background: linear-gradient(171.44deg, #146cb3 32%, #1394b3 77.05%);
}

.logout-form {
    margin-left: 8px;
}

.btn-logout {
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-logout:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 127, 94, 0.35);
}


