/* === SIDEBAR CONTAINER === */
.sidebar {
    width: 220px;
    position: fixed;
    top: 0;
    left: -220px;
    height: 100vh;
    background: #f8f9fa;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
}

.sidebar.show {
    left: 0;
}

/* === TOGGLE BUTTON === */
#toggleSidebar {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    background: none;
    border: none;
}

/* === NAV LINK === */
.nav-link {
    font-size: 12px;
    padding: 5px 10px;
    color: #333;
    display: flex;
    align-items: center;
    transition: 0.2s ease;
    font-weight: bold !important; /* Force the text to be bold */
}

/* === NAV LINK ICON === */
.nav-link i {
    font-size: 13px;
    margin-right: 6px;
    font-weight: bold !important; /* Force the icon to be bold */
}

.nav-link:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.08);
    border-radius: 4px;
}

/* === DROPDOWN MENU === */
.dropdown-menu {
    font-size: 11.5px;
    min-width: 140px;
    padding: 4px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

/* === DROPDOWN ITEM === */
.dropdown-item {
    font-size: 11.5px;
    padding: 5px 9px;
    color: #333;
    display: flex;
    align-items: center;
    transition: 0.2s;
    font-weight: bold !important; /* Force the text to be bold */
}

/* === DROPDOWN ITEM ICON === */
.dropdown-item i {
    font-size: 12px;
    margin-right: 5px;
    font-weight: bold !important; /* Force the icon to be bold */
}

.dropdown-item:hover {
    background-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border-radius: 4px;
}

/* === SIDEBAR DROPUP CONTAINER === */
.sidebar-dropup {
    padding: 6px 10px;
    font-size: 11.5px;
}

/* === DROPUP NAV LINK === */
.sidebar-dropup-nav-link {
    font-size: 11.5px;
    padding: 5px 10px;
    background: #fff;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease;
    font-weight: bold !important; /* Force the text to be bold */
}

.sidebar-dropup-nav-link:hover {
    background-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

/* === DROPUP MENU === */
.sidebar-dropup-menu {
    min-width: 140px;
    font-size: 11.5px;
    padding: 4px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    bottom: 100%;
    transform: translateY(-6px);
}

/* === DROPUP MENU ITEM === */
.sidebar-dropup-item {
    font-size: 11.5px;
    padding: 5px 9px;
    color: #333;
    display: flex;
    align-items: center;
    transition: 0.2s ease;
    font-weight: bold !important; /* Force the text to be bold */
}

/* === DROPUP ITEM ICON === */
.sidebar-dropup-item i {
    font-size: 12px;
    margin-right: 5px;
    font-weight: bold !important; /* Force the icon to be bold */
}

.sidebar-dropup-item:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.08);
    border-radius: 4px;
}

/* === LOGIN BUTTON (GUEST MODE) === */
.sidebar .btn-outline-danger {
    font-size: 11.5px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
