body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px 0;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.container {
    max-width: 850px; /* Widened to fit all boxes side-by-side */
    text-align: center;
}

h1 {
    text-align: center;
    margin-top: 0;
}

/* Places the Indoor and Outdoor groups next to each other */
.locations-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px; /* Wide space between Indoor and Outdoor */
    flex-wrap: wrap; /* Allows stacking on narrow screens */
}

/* Formats the Indoor/Outdoor headers */
.location-group h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.aqi-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.aqi-container {
    border: 3px solid;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.aqi {
    font-size: 5em;
    font-weight: bold;
}

.aqi-label {
    font-weight: bold;
}

.pm-label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.time, .link {
    text-align: center;
}

.iframe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 20px 0;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.link a {
    color: #000;
    text-decoration: underline;
}