body {
    font-family: "Krub", sans-serif;
}
#header {
    padding: 10px 12px;
    background: #eee;
    border-bottom: 1px solid #888;
}

#map {
    position: absolute;
    top: 55px;
    bottom: 30px;
    left: 10px;
    right: 10px;
    border: 1px solid #888;
}

#mouse-position {
    position: absolute;
    left: 12px;
    bottom: 6px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border: 1px solid #888;
    border-radius: 6px;
    font-size: 12px;
}

#layer-switcher {
    position: absolute;
    right: 22px;
    top: 100px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 10px;
    border: 1px solid #888;
    border-radius: 8px;
    font-size: 13px;
}

#time-controls {
    position: absolute;
    left: 70px;
    top: 62px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 10px;
    border: 1px solid #888;
    border-radius: 8px;
    font-size: 13px;
    min-width: 200px;
}

.row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0;
}

.slider {
    width: 140px;
}

#time-select {
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#refresh-times {
    background: #007cba;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

#refresh-times:hover {
    background: #005a87;
}

#refresh-times:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.loading {
    color: #666;
    font-style: italic;
}

#navigation-controls {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border: 1px solid #888;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-button {
    font-family: "Krub", sans-serif;
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 80px;
}

.nav-button:hover:not(:disabled) {
    background: #005a87;
    transform: translateY(-1px);
}

.nav-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.current-time {
    font-weight: bold;
    color: #333;
    text-align: center;
    min-width: 150px;
}

.radar-layer {
    transition: opacity 0.5s ease-in-out;
}