:root {
    --primary-color: #3b82f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --bg-light: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Outfit', sans-serif;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8c738759be?q=80&w=2070&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

/* Glassmorphism */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.premium-nav {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-container {
    height: calc(100vh - 70px);
}

.sidebar-panel {
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.4);
}

/* Vehicle Cards */
.vehicle-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.sortable-list {
    min-height: 50px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    padding: 5px;
}

/* List Items */
.order-item {
    cursor: grab;
    margin-bottom: 5px;
    border-radius: 8px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
    background-color: white;
}

.order-item:active {
    cursor: grabbing;
}

.order-item:hover {
    background-color: #f1f5f9;
}

.order-item.ghost {
    opacity: 0.4;
    background-color: #e2e8f0;
}

/* Map */
.map-wrapper {
    position: relative;
    padding: 10px;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1;
}

/* Loading Overlay */
#loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

/* Badges & Text */
.item-address {
    font-weight: 600;
    color: #1e293b;
}

.item-eta {
    color: #64748b;
    font-family: monospace;
}
