﻿/* Sidebar container stays blue */
.admin-sidebar {
    background: linear-gradient(to bottom right, #4c8bf5, #326cd9);
    width: 240px;
    min-height: 100vh;
    padding-top: 1.5rem;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* All nav links default */
.nav-link {
    font-weight: 500;
    color: white !important;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

    /* Hover effect */
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Active nav link */
    .nav-link.active {
        background-color: #ffffff !important;
        color: #4c8bf5 !important;
        font-weight: 600;
    }

        /* Make sure icon stays blue when active */
        .nav-link.active i {
            color: #4c8bf5 !important;
        }

    /* Optional: icon margin fix */
    .nav-link i {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }

.content-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}