.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
    text-align: left;
}
.content-wrapper ol,
.content-wrapper ul {
    margin-left: 1.5rem;
    padding-left: 1.2rem;
}
/* Indent the subsection headings */
.content-wrapper h3 {
    margin-left: 1.5rem;
    padding-left: 0.2rem;
}

/* Indent the paragraph immediately following each h3 */
.content-wrapper h3 + p {
    margin-left: 2rem;
}
.content-wrapper {
    max-width: 1100px;
}

/* Indent lists that follow an h3 */
.content-wrapper h3 + ul,
.content-wrapper h3 + ol {
    margin-left: 2rem;
}

/* Indent additional paragraphs or lists that continue the same section */
.content-wrapper h3 ~ p,
.content-wrapper h3 ~ ul,
.content-wrapper h3 ~ ol {
    margin-left: 2rem;
}
.intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.weather-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.weather-form input,
.weather-form select {
    padding: 0.5rem;
    font-size: 1rem;
}

.weather-form button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    background-color: #003366;
    color: white;
    border: none;
    cursor: pointer;
}

.weather-form button:hover {
    background-color: #002244;
}

.weather-result {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 600px;
}

.weather-result .error {
    color: #b00000;
    font-weight: bold;
}
