﻿/* Estilos para los marcadores */
.delivery-marker {
    position: relative;
    width: 30px;
    height: 42px;
    text-align: center;
}

.marker-pin {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    left: 5px;
    top: 0;
    transform: rotate(-45deg);
}

.marker-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    color: #333;
}

.unique-marker .marker-pin {
    background-color: #28a745;
}

.grouped-marker .marker-pin {
    background-color: #007bff;
}

.inconsistent-marker .marker-pin {
    background-color: #dc3545;
}

.delivery-popup {
    font-family: Arial, sans-serif;
    padding: 5px;
}

    .delivery-popup h5 {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .delivery-popup p {
        margin: 5px 0;
        line-height: 1.3;
    }

/* Agrega esto al final de tus estilos */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    font-size: 13px;
    line-height: 1.5;
}

.legend-title {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 3px 0;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
    display: inline-block;
}
