body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: "GT Maru", Helvetica, sans-serif;
    background-color: #f4f4f4;
    user-select: none; 
    overflow: hidden;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
}
h2 {
    color: #ee3124;
    margin-bottom: 10px;
}
#map {
    height: calc(100vh - 20px);
    width: calc(100vw - 20px);
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#slider-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    z-index: 999;
    margin-top: 10px;
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#slider {
    width: 100%;
    cursor: pointer;
    accent-color: #ee3124;
}
#slider-time {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.leaflet-popup {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: "GT Maru", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    color: #333;
}
.leaflet-popup strong {
    color: #0c0b31;
    font-family: "GT Maru", Helvetica, sans-serif;
    font-size: 16px;
}

.map-attribution {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 999;
}

.map-attribution a {
    color: #0078A8;
    text-decoration: none;
}

.map-attribution a:hover {
    text-decoration: underline;
}