/* Layout de base */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--background-color);
}

.page-wrapper.with-sidebar {
    padding-left: 250px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 250px;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .sidebar {
        transform: translateX(0);
    }
}

.sidebar.active {
    transform: translateX(0);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 0;
    margin-top: 20px;
    padding: 2rem;
}

/* @media (min-width: 768px) {
    .main-content {
        margin-left: 250px;
    }
} */

/* Dropdown menu */
.user-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
}

.dropdown-menu.active {
    display: block;
}