* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Container */
#container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
}

/* Top Banner */
#top-banner {
    text-align: center;
    margin-bottom: 20px;
}

#top-banner img {
    width: 100%;
    max-width: 960px;
    height: auto;
}

/* Layout Wrapper */
#layout-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Left and Right Banners */
#left-banner, #right-banner {
    width: 203px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#left-banner img, #right-banner img {
    width: 203px;
    height: 658px;
}

/* Content Wrapper */
#content-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Title Section */
#title-section {
    text-align: center;
    margin-bottom: 20px;
}

#title-section h1 {
    font-size: 36px;
    color: #333;
}

/* Search Bar Section */
#search-bar-section {
    text-align: center;
    margin-bottom: 20px;
}

.block-wrapper {
    margin-bottom: 20px;
}

#search-bar {
    display: inline-flex;
    width: 100%;
    max-width: 750px;
    justify-content: center;
    padding: 10px;
    background-color: #90CAF9;
    border-radius: 8px;
}

#search-bar input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#search-bar button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Weather Display */
#main-content {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#weather-display {
    margin-bottom: 20px;
}

#weather-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#temp {
    font-size: 48px;
}

#status {
    font-size: 24px;
}

#air-quality {
    font-size: 16px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

/* Pollen and Pollutants Section */
#pollen-section, #pollutants-section {
    margin-bottom: 20px;
}

/* Inner Footer (960x100) */
#inner-footer {
    text-align: center;
    margin-top: 20px;
}

#inner-footer img {
    width: 100%;
    max-width: 960px;
    height: auto;
}

/* Outer Footer */
#outer-footer {
    width: 100%;
    background-color: #4CAF50;
    text-align: center;
    padding: 20px;
    color: white;
    margin-top: 20px;
}

#dynamic-weather-widget {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
}

#dynamic-weather-widgets a {
    display:none;
}
