/* Sidebar Styles - IrisaFoundation Blazor Framework */

.sidebar {
    background-color: rgb(255, 255, 255);
    position: fixed;
    display: block;
    right: 0;
    top: 65px;
    bottom: 0;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    /* Flip the scrollbar to the right (screen) edge in this RTL layout; content stays RTL below */
    direction: ltr;
    transition: width 0s;
    z-index: 1060;
    padding-top: 32px;
    box-shadow: rgba(13, 20, 33, 0.1) 0px 2px 4px 0px;
}

.sidebar > * {
    direction: rtl;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.box-shadow-2 {
    box-shadow: rgba(13, 20, 33, 0.1) 0px 2px 4px 0px;
}

#sidebar-toggle {
    position: fixed;
    top: 25px;
    right: 18px;
    z-index: 9999;
    color: #FFFFFF;
}

.link-bg-color {
    padding: 10px 0 10px 10px;
    color: #626975;
    font-weight: 500;
    border: none;
    font-size: 14px;
}

.link-bg-color > i {
    color: #8C919B;
}

.link-bg-color.sidebar-active-link,
.link-bg-color:hover,
.link-bg-color:hover a {
    color: #0055EF;
    font-weight: 700 !important;
}

.link-bg-color.sidebar-active-link > i,
.link-bg-color:hover > i {
    color: #0055EF;
}

.sub-link-sidebar {
    padding-right: 8px;
    border-right: 2px solid #e4e5e7;
}

.sub-link-sidebar .link-bg-color {
    padding: 10px 0 10px 10px;
}

.border-deep-blue-30 {
    border-color: rgba(0, 85, 239, 0.3) !important;
}

.text-gray-110 {
    color: #6c757d;
}

.text-yellow-90 {
    color: #ffc107;
}

.cursor-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

a.me-25px {
    margin-left: 25px;
}

.status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-primary {
    background-color: rgba(0, 85, 239, 0.1);
    color: #0055EF;
}

.favorite {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.font-bolder {
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .sidebar {
        width: 0 !important;
        overflow: hidden;
    }
    
    .sidebar.show {
        width: 288px !important;
    }
}
