body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    overflow: hidden; /* Prevent scrolling */
}

#map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #222;
    border: 2px solid #444;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

.animation {
    animation: fadeIn 4s ease-in-out;
}
