/* painel/public/css/sidebar.css */
/* Sidebar Styles */
.sidebar {
    height: 100vh;
    background: linear-gradient(135deg, #13a89e 25%, #0174ba 100%);
    color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    z-index: 1050;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    transform: translateX(-100%);
}

.sidebar-logo {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-logo img {
    max-width: 80%;
    width: auto;
}

/* Navigation Links */
.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px 8px;
    display: flex;
    align-items: center;
}

.sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.sidebar .nav-link.active {
    background: linear-gradient(90deg, #4299e1 0%, #3182ce 100%);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
