body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #c48a9f;
    margin: 0;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

}

form {
    display: inline-block;
    margin: 110px auto 20px auto;
    word-spacing: 0cm;

}

input[type="text"] {
    padding: 9px;
    font-size: 16px;
    color: #362831;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: border 0.2s ease-in-out;
}

input[type="text"]:focus {
    border: 1.5px solid #d97aa8;
}

button {
    border-radius: 0 5px 5px 0;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #000;
    color: white;
    border: none;
    padding: 11px 20px;
}

button:hover {
    background-color: #d97aa8;
    cursor: pointer;
}

main {
    max-width: 550px;
    margin: 30px auto;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(217, 122, 168, 0.08);
    overflow-x: hidden;
}

.current-weather {
    margin-top: 20px;
    padding: 20px;
    background-color: #fdf5fa;
    border-radius: 8px;
    border: 2px solid #d97aa8;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.current-weather p {
    margin: 0;
    font-size: 14px;
}

.weather-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.weather-temp-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.weather-temp-section strong {
    font-size: 56px;
    color: #d97aa8;
    margin: 0;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forecast .list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 12px;
    margin: 10px 0;
    justify-content: space-between;
}

.forecast .list li {
    background: #e9c6e3;
    padding: 12px 18px;
    min-width: 120px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #d97aa8;
    font-size: 14px;
    color: #000;
}

footer a {
    color: #d97aa8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h1 {
    color: #000;
    text-transform: capitalize;
    text-size-adjust: initial;
    font-family: 'Montserrat', sans-serif;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-radius: 8px;
    border-bottom: 2px solid #d97aa8;
}

.forecast-day {
    text-align: center;
    margin: 10px;
}

.forecast-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 8px;
}

.forecast-temp {
    text-align: center;
    color: #000;
    font-weight: bold;
    display: flex;
    gap: 4px;
    white-space: nowrap;
}

.forecast-temp strong {
    color: #d97aa8;
}

.forecast {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
}

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.current-icon {
    display: inline-block;
    font-size: 56px;
    margin: 0;
}