#sidebar {
    position: fixed;
    z-index: 999;
}
.nav .nav-item a.nav-link.active {
    color: #FF6B35;
}
.nav .nav-item a.nav-link:hover {
    color: #FF6B35;
}
.sidebar.expanded {
    width: 300px;
}
.sidebar .nav-link span, .sidebar .nav-link small {
    display: none;
}
.sidebar.expanded .nav-link span, .sidebar.expanded .nav-link small {
    display: inline;
}
.sidebar .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar.expanded .nav-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}
@media (max-width: 767px) {
    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100% !important;
        height: 60px !important;
        z-index: 999;
    }
    .sidebar .nav {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-around;
        width: 100%;
    }
    .sidebar .nav-link span, .sidebar .nav-link small {
        display: none !important;
    }
    .border-top {
        border-top: unset !important;
    }
    .border-bottom {
        border-bottom: unset !important;
    }

    #toggleSidebar {
        display: none !important;
    }
    .nav .nav-item a.nav-link.active {
        color: #FF6B35 !important;
        background: none;
        border-bottom: 4px solid #FF6B35 !important;
        padding-bottom: 16px !important;
    }
}

/* udharobar css */
.udharo-top-bar {
    background-color: #FF6B35;
    color: white;
    border-bottom: 1px solid  #FF8C42;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 998;
}

.udharo-metric {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 0.8rem;
}

.udharo-metric i {
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.udharo-metric-label {
    font-size: 0.95rem;
    opacity: 1.0;
}

.udharo-metric-value {
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.divider {
    width: 1px;
    height: 1.8rem;
    background-color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .udharo-metric {
        padding: 0 0.6rem;
    }
}

@media (max-width: 576px) {
    .udharo-top-bar {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .udharo-metric {
        padding: 0 0.4rem;
    }
    
    .udharo-metric-value {
        font-size: 0.85rem;
    }
    
    .udharo-metric-label {
        font-size: 0.85rem;
    }
    
    .divider {
        height: 1.5rem;
    }
}
.icon-spin {
        animation: spin 1s linear infinite;
        display: inline-block;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.icon-pulse {
    animation: pulse 1s infinite;
    display: inline-block;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.icon-bounce {
    animation: bounce 1s infinite;
    display: inline-block;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.active-order-li {
    background-color: orange;
}
