/**
 * Leyenda de estados y leyenda de resaltado
 */

.legend-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Highlight legend */
.hl-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.74rem;
    color: #64748b;
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hl-box {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 2px solid;
}
