/* style.css */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #87CEEB;
    padding-bottom: 10px;
}

#location-info {
    text-align: center;
    background: rgba(135, 206, 235, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.weather-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #87CEEB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.weather-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.weather-item:last-child {
    border-bottom: none;
}

.weather-value {
    font-weight: bold;
    color: #2980b9;
}

.forecast-day {
    background: rgba(176, 224, 230, 0.3);
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #5dade2;
}

#refresh-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

#refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.loading {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.error {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}
