/**
 * Interaktív Térkép Stílusok
 * ==========================
 * A foglalási rendszer kategória térképeihez
 */

/* Térkép konténer */
.terkep-container {
    max-width: 100%;
}

.terkep-wrapper {
    position: relative;
    /*background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
}

/* SVG térkép */
.terkep-svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}

/* Kattintható állás területek */
.terkep-allas-kattinthato {
    cursor: pointer;
}

/* Térkép jelölő (ha képen vannak a pozíciók) */
.terkep-jelolo {
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 10;
}

.terkep-jelolo:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.terkep-jelolo i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Térkép címkék */
.terkep-cimke {
    font-family: inherit;
    font-weight: 600;
    pointer-events: none;
}

/* Háttér réteg */
.terkep-hatter {
    pointer-events: none;
}

/* Modal stílusok */
#allasModal .modal-body img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}

#allasModal .modal-body p {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Reszponzív */
@media (max-width: 768px) {
    .terkep-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }

    .terkep-svg {
        max-height: 60vh;
    }

    /* Nagyobb kattintható terület mobilon */
    .terkep-jelolo i {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .terkep-svg {
        max-height: 50vh;
    }
}

