.modal-content {
    border-radius: 22px;
}

/* ================= MAPA ================= */

.map-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    display: block;
    pointer-events: none;
}

.map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-svg g {
    cursor: pointer;
    transition: 0.25s ease;
}

/* BASE */
.cabana circle,
.mesa rect {
    fill: #EDEDED;
    stroke: #AF7634;
    stroke-width: 3;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,.15));
    transition: 0.25s ease;
}

/* ================= ESTADOS ================= */

.disponible circle,
.disponible rect {
    fill: #3CB371 !important;
    stroke: #2E8B57 !important;
}

.reservado circle,
.reservado rect {
    fill: #AF7634 !important;
    stroke: #8c5e29 !important;
}

.ocupado circle,
.ocupado rect {
    fill: #C0392B !important;
    stroke: #922B21 !important;
    cursor: not-allowed;
}

/* SELECCIONADO */
.seleccionado circle,
.seleccionado rect {
    fill: #1D1D1B !important;
}

/* TEXTO */
.map-svg text {
    fill: white;
    font-size: 18px;
    pointer-events: none;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

/* TOOLTIP SIMPLE */
.tooltip-simple {
    position: absolute;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    pointer-events: none;
    display: none;
    z-index: 9999;
}

/* ================= LEYENDA ================= */

.leyenda-estados {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.estado-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.circulo {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.circulo.disponible { background: #3CB371; }
.circulo.reservado { background: #AF7634; }
.circulo.ocupado { background: #C0392B; }


