/* Styles for the froge.ai weather page */
body {
    background-color: #e0f7fa;
    font-family: 'Arial', sans-serif;
    color: #004d40;
}

header {
    background-color: #00796b;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: white;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
}

.weather-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
}

.temperature {
    font-size: 48px;
    font-weight: bold;
    color: #d84315;
}

.forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.forecast-day {
    text-align: center;
}

.forecast-day svg {
    width: 40px;
    height: 40px;
    fill: #1976d2;
}

footer {
    background-color: #004d40;
    text-align: center;
    padding: 10px 0;
    color: white;
}

footer a {
    color: #80cbc4;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}