#map { width: 100vw; height: 100vh; }
body { margin: 0; padding: 0; font-family: sans-serif; overflow: hidden; }

.leaflet-control-home {
    background-color: white;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.leaflet-control-home:hover { background-color: #f4f4f4; }

.settings-panel {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 14px;
    min-width: 160px;
}
.settings-header {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.settings-content { margin-top: 10px; border-top: 1px solid #eee; padding-top: 10px; display: block; }
.settings-content.hidden { display: none; }
.chevron { font-size: 12px; transition: transform 0.3s ease; }
.chevron.up { transform: rotate(180deg); }
.settings-panel label { display: block; margin-bottom: 6px; cursor: pointer; }

.asm-marker {
    background-color: green; 
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 13px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
}
.asm-marker.delayed { background-color: #d92020; }

.station-marker {
    background-color: white;
    border: 3px solid #333;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Full-page Heavy Blur Auth Overlay */
#auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}
#auth-overlay h2 {
    margin-bottom: 20px;
    font-size: 24px;
}
#firebaseui-auth-container {
    width: 100%;
    max-width: 400px;
}