.stats-container {
    margin-bottom: 20px;
}

.stat-card {
    border-radius: 10px;
    padding: 15px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon.delivery {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.stat-icon.time {
    background: rgba(25, 135, 84, 0.2);
    color: #198754;
}

.stat-icon.alert {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.entregador-card {
    border-left: 4px solid;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entregador-card:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.entregador-card .btn-success {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.entregador-card:hover .btn-success {
    opacity: 1;
}

.entregador-card .btn-success:hover {
    transform: scale(1.05);
}

.entregador-card .btn-success:active {
    transform: scale(0.95);
}

.status-disponivel { border-color: #28a745; }
.status-entrega { border-color: #ffc107; }
.status-indisponivel { border-color: #dc3545; }

.entregador-info {
    font-size: 0.9rem;
}

.cluster-marker-container {
    background: none;
    border: none;
}

.cluster-marker {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #198754;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mapa-controles {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.heatmap-toggle {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.alert-zone {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.alert-zone .alert {
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.rota-info {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    font-size: 0.9em;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-bottom: 15px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6c757d;
    border: 2px solid white;
}

.timeline-item.active::before {
    background: #28a745;
}

.weather-info {
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 5px;
}

/* Select múltiplo de entregas */
select[multiple] {
    padding: 0.5rem;
    border-radius: 0.375rem;
    border-color: #dee2e6;
}

select[multiple] option {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

select[multiple] option:last-child {
    border-bottom: none;
}

select[multiple] option:hover {
    background-color: #f8f9fa;
}

select[multiple] option:checked {
    background-color: #19875422 !important;
    color: #198754;
    font-weight: 500;
}

/* Ajustes de responsividade */
@media (max-width: 768px) {
    select[multiple] {
        max-height: 200px;
    }
} 