/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
    text-align: center;
}

h1, h2, h3 {
    color: #222;
}

/* Header Styles */
.headbar {
    background-color: #003366;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.headbarelements {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.headbarelements:hover {
    color: #ffcc00;
}

/* Main Content */
.mainbody {
    margin-top: 80px;
    padding: 20px;
}

.hero-section {
    background: #004080;
    color: white;
    padding: 50px 20px;
    border-radius: 10px;
}

.hero-section p {
    font-size: 18px;
}

button {
    padding: 10px 20px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e6b800;
}

/* Map Section */
.map-section {
    margin: 30px auto;
    max-width: 800px;
}

.map {
    height: 400px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Weather and Alerts Section */
.weather-section, .alerts-section {
    margin: 30px auto;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}