.orders-list {
    flex: 1;
    overflow-y: auto;
}

.orders-list .order-card {
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

/* Orders list */
.orders-list {
    flex: 1;
    overflow-y: auto;
}

.orders-list .order-card {
    transition: all 0.2s;
}

.orders-list .order-card.active,
.orders-list .order-card:hover {
    background: #fff;
    border-color: #e0e0e0;
    transform: translateX(-4px);
}

.table-neo .service-icon {
    background-color: #f8f9fa;
}

.service-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.orders-list .order-card:hover .service-icon{
    background: #f6f6f6
}

/* WebSocket Status Indicator */
.status-bar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.status-item {
    font-size: 14px;
    font-weight: 500;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* Connecting state - pulsing animation */
.status-dot.status-connecting {
    background: #f59e0b;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot.status-connecting::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Connected state - solid green */
.status-dot.status-online {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Disconnected/Error state - solid red */
.status-dot.status-offline {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
