/* map_full_screen.css */

.map-page-container {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-control-bar {
    position: absolute;
    top: 50px; 
    left: 15px;
    z-index: 2000;
}

.btn-back-compact {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #0056b3 !important;
    border: 1px solid #0056b3 !important;
    padding: 6px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-back-compact:active {
    background-color: #eef7ff !important;
    transform: translateY(1px);
}

.leaflet-top.leaflet-left {
    top: 110px !important; 
}

.bottom-copyright {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    font-size: 11px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
}