/* Global Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

header {
    background-color: #0078d4;
    color: white;
    padding: 20px;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
}

footer {
    background-color: #0078d4;
    color: white;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

/* Map Container */
#map {
    width: 100%;
    height: 500px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Coordinates Info */
#coords {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

header, footer {
    animation: fadeIn 1s ease-in-out;
}

/* Responsiveness */
@media (max-width: 600px) {
    header {
        font-size: 18px;
    }

    #coords {
        font-size: 16px;
    }
}
