/* Bensendays Camping Map Styles */

.bensendays-map-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    /* Keep a respectable min width for the map view itself */
    height: 700px; /* matches SVG viewbox height natively */
    max-height: 80vh; /* Don't exceed screen height too much */
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #ccc;
    background: #f0f0f0;
}

.bensendays-map-container svg {
    /* cursor for panning */
    cursor: grab;
}

.bensendays-map-container svg:active {
    cursor: grabbing;
}

.bensendays-map-container .site {
    fill: #ffffff;
    stroke: #000000;
    stroke-width: 1.5;
    transition: fill 0.2s;
}

.bensendays-map-container .site.reserved {
    fill: #ff9999; /* Red for reserved */
}

.bensendays-map-container .site-text {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}
