/* ================= GLOBAL ================= */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

#map {
    width: 100%;
    height: 100vh;
}

/* ================= DROPDOWN ================= */
#selectContainer {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 420px;
    max-width: 90%;
}

#countrySelect {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: rgba(255,255,255,0.95);
    text-align: center;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* ================= EASY BUTTON ================= */
.easy-button-button,
.leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 16px !important;
}

.leaflet-control {
    pointer-events: auto !important;
}

.leaflet-bar a,
.leaflet-bar button {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* ================= MODAL ================= */
#modalBox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    pointer-events: none;
}

.modalInner {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

/* ================= CARD ================= */
.popupCard {
    width: 420px;
    max-width: 95vw;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popupHeader {
    background: #20c4e6;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.popupHeader button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.popupBody {
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
}