#adminSidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #222;
    color: #fff;
    padding-top: 25px;
    transition: transform 0.3s ease;
    z-index: 1050;
    border-right: 1px solid #444;
}

#adminSidebar a {
    color: #fff;
}

/* Main content area */
#mainContent {
    /* margin-left: 250px; */
    /* margin-left: 125px; */
    padding: 13px 25px;
}

/* Top content bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logout button (desktop only) */
.logout-btn {
    color: #888;
    text-decoration: none;
}

/* Show menu toggle on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block !important;
        /* 👈 override properly */
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
    }

    .logout-btn {
        display: none;
    }

    #mainContent {
        margin-left: 0;
    }

    #adminSidebar {
        left: auto;
        right: 0;
        transform: translateX(100%);
    }

    #adminSidebar.active {
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    #adminSidebar {
        right: 0;
        transform: translateX(100%);
    }

    #adminSidebar.active {
        transform: translateX(0%);
    }
}


/* Hide menu toggle on desktop */
.menu-toggle {
    display: none;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.sidebar-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}
.bg-cdark{
    background: #222;
}


