body {
    margin: 0;
    padding: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.marker {
    background-image: url('./bucee-icon.png');
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

@media (pointer: coarse) {
    .marker {
        width: 38px;
        height: 38px;
    }
}

.mapboxgl-popup {
    max-width: min(230px, calc(100vw - 32px));
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    background-color: #fffcd1;
    border-radius: 12px;
    padding: 17px 17px 20px;
    color: #955404;
    border: 2px solid #FEF117;
}

.mapboxgl-popup-content h3 {
    color: #D31145;
    font-size: 1.15em;
    text-transform: uppercase;
}

.mapboxgl-popup-close-button {
    color: #FEF117;
    border: none;
    background: none;
    outline: none;
}

.mapboxgl-popup-close-button:hover {
    color: #D31145;
    background: none;
    border: none;
    outline: none;
}

#status-banner {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    max-width: 80%;
    text-align: center;
    background-color: #fffcd1;
    border: 2px solid #FEF117;
    color: #955404;
    font-family: 'Open Sans', sans-serif;
    padding: 10px 16px;
    border-radius: 12px;
}

#info-panel {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    max-width: 280px;
    background-color: #fffcd1;
    border: 2px solid #FEF117;
    color: #955404;
    font-family: 'Open Sans', sans-serif;
    padding: 16px 18px;
    border-radius: 12px;
}

#info-panel h1 {
    margin: 0 0 8px;
    color: #D31145;
    font-size: 1.15em;
    text-transform: uppercase;
}

#info-panel p {
    margin: 0 0 8px;
    font-size: 0.9em;
    line-height: 1.4;
}

#info-panel p:last-child {
    margin-bottom: 0;
}

#info-panel a {
    color: #D31145;
}

#info-close {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #FEF117;
    background: none;
    border: none;
    font-size: 1.2em;
    line-height: 1;
    cursor: pointer;
    outline: none;
}

#info-close:hover {
    color: #D31145;
}

#info-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fffcd1;
    border: 2px solid #FEF117;
    color: #955404;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

#info-toggle:hover {
    color: #D31145;
}

@media (max-width: 600px) {
    #info-panel {
        max-width: calc(100% - 24px);
        padding: 12px 32px 12px 14px;
    }

    #info-panel h1 {
        font-size: 1.05em;
    }

    #info-panel p {
        font-size: 0.85em;
    }

    #status-banner {
        max-width: calc(100% - 24px);
        font-size: 0.9em;
    }

    #info-toggle {
        width: 36px;
        height: 36px;
    }
}
