body {
    font-family: Arial, sans-serif;
    background: #e3f2fd;
    margin: 0;
    padding: 0;
}
.dashboard-container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    padding: 24px 32px 32px 32px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.10);
    color: #1565c0;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1565c0;
}
#searchForm {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
#cityInput {
    flex: 1;
    padding: 8px 10px;
    border: 1.5px solid #90caf9;
    border-radius: 4px;
    font-size: 1rem;
    background: #f5faff;
    color: #1565c0;
    transition: border-color 0.2s;
}
#cityInput:focus {
    border-color: #1976d2;
    outline: none;
}
button[type="submit"] {
    padding: 8px 18px;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #1565c0;
}
.weather-card {
    background: #f5faff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(21,101,192,0.07);
    padding: 18px 16px 14px 16px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1565c0;
}
.weather-card.hidden {
    display: none;
}
.weather-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 6px 0;
}
#weatherIcon {
    width: 60px;
    height: 60px;
}
#temperature {
    font-size: 2.2rem;
    font-weight: bold;
}
#description {
    text-transform: capitalize;
    margin: 6px 0 10px 0;
    font-size: 1.1rem;
}
.weather-details {
    display: flex;
    gap: 18px;
    font-size: 1rem;
    margin-top: 4px;
}
.error-message {
    color: #e53935;
    font-size: 1em;
    margin-top: 12px;
    text-align: center;
    min-height: 22px;
}
@media (max-width: 500px) {
    .dashboard-container {
        padding: 14px 4px 18px 4px;
    }
    .weather-card {
        padding: 10px 4px 10px 4px;
    }
} 