html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    padding: 10px 20px;
    color: white;
}
.navbar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}
.navbar a:hover {
    text-decoration: underline;
}
.navbar input[type="text"] {
    padding: 5px;
    border: none;
    border-radius: 5px;
}
.suggestions {
    background-color: white;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    width: 200px;
    display: none;
}
.suggestions a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}
.suggestions a:hover {
    background-color: #f0f0f0;
}

/* Container for page content */
.container {
    flex: 1;
}

/* Header styles */
.header {
    text-align: center;
    background-color: #003366;
    color: white;
    padding: 40px 20px;
    margin-bottom: 20px;
}
.header h1 {
    font-size: 2.5rem;
    margin: 0;
}
.header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Map container */
#map-container {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
#map {
    width: 100%;
    height: 600px;
    border: 2px solid #003366;
    border-radius: 4px;
}

/* Popup content in map */
.popup-content {
    position: relative;
    font-family: Arial, sans-serif;
    padding-right: 100px;
    min-height: 120px;
}
.popup-content img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: auto;
    border: 2px solid #003366;
    border-radius: 4px;
}
.popup-content p {
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 100px;
}
.popup-content table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-top: 10px;
}
.popup-content th, .popup-content td {
    padding: 5px;
    border: 1px solid #ccc;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
    margin-top: 40px;
    border-radius: 4px;
}
.footer p {
    margin: 0;
}

/* Fullscreen mode for map */
#map:fullscreen, #map:-webkit-full-screen, #map:-moz-full-screen, #map:-ms-fullscreen {
    width: 100% !important;
    height: 100% !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    #map {
        height: 400px;
    }
    .popup-content {
        padding-right: 0;
        min-height: auto;
    }
    .popup-content img {
        position: relative;
        display: block;
        margin: 10px auto;
        top: 0;
        right: 0;
    }
    .popup-content p {
        padding-right: 0;
    }
} 