#map-container {
    position: absolute;
    top: 55px;
    left: 15px;
    width: 400px;
    height: 400px;
    border: 0px;
    resize: both;
    overflow: hidden;
    z-index: 0;
}
.mobile #map-container {
    top: 65px;
    left: 15px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 140px);
}

#map-header {
    background-color: rgb(50,50,50);
    color: white;
    padding: 10px;
    cursor: move;
    user-select: none;
    width: 100%;
    height: 36px;
}

#map {
    width: 100%;
    height: calc(100% - 36px);
}
#close-btn {
    float: right;
    cursor: pointer;
}
#close-btn:hover {
    color: red;
}

#map-container::after {
    content: '\259F';
    position: absolute;
    width: 20px;
    height: 20px;
    color: black;
    background: transparent;
    cursor: nwse-resize;
    bottom: 0;
    right: 0;
    z-index: 1000;
}

#map-toggle {
    width: 40px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
}
.leaflet-attribution-flag {
    display: none !important;
}

#map-consent-overlay {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: calc(100% - 36px);
    background-color: rgb(255, 255, 255);
    z-index: 10;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
#map-consent-button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background-color: #3a4454;
    color: white;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}
#map-consent-button:hover {
    background-color: #2c3544;
}
