/* Map Vehicle Dots Styles */
.map-container {
    position: relative;
    background: #e0f2fe;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

#fleetMap {
    width: 100%;
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 25%, #34d399 50%, #10b981 75%, #059669 100%);
}

/* Vehicle Dots on Map */
.vehicle-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vehicle-dot:hover {
    transform: scale(1.3);
    z-index: 10;
}

.vehicle-dot.taxi {
    background-color: #3b82f6;
}

.vehicle-dot.bus {
    background-color: #10b981;
}

.vehicle-dot.marine {
    background-color: #06b6d4;
}

.vehicle-dot.active {
    background-color: #10b981;
    animation: pulse 2s infinite;
}

.vehicle-dot.idle {
    background-color: #f97316;
}

.vehicle-dot.alert {
    background-color: #dc2626;
    animation: blink 1s infinite;
}

.vehicle-dot.maintenance {
    background-color: #6b7280;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Sample Vehicle Positions */
.vehicle-dot:nth-child(1) { top: 20%; left: 15%; }
.vehicle-dot:nth-child(2) { top: 30%; left: 25%; }
.vehicle-dot:nth-child(3) { top: 45%; left: 35%; }
.vehicle-dot:nth-child(4) { top: 60%; left: 45%; }
.vehicle-dot:nth-child(5) { top: 25%; left: 55%; }
.vehicle-dot:nth-child(6) { top: 40%; left: 65%; }
.vehicle-dot:nth-child(7) { top: 55%; left: 75%; }
.vehicle-dot:nth-child(8) { top: 70%; left: 85%; }
.vehicle-dot:nth-child(9) { top: 15%; left: 70%; }
.vehicle-dot:nth-child(10) { top: 80%; left: 20%; }
.vehicle-dot:nth-child(11) { top: 35%; left: 80%; }
.vehicle-dot:nth-child(12) { top: 65%; left: 30%; }
.vehicle-dot:nth-child(13) { top: 50%; left: 60%; }
.vehicle-dot:nth-child(14) { top: 75%; left: 50%; }
.vehicle-dot:nth-child(15) { top: 10%; left: 40%; }