.weather-app-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.weather-app-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#weather-location-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

#weather-search-btn {
    padding: 12px 25px;
    background: rgba(255,255,255,0.3);
    border: 2px solid white;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

#weather-search-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.weather-loading, .weather-error {
    text-align: center;
    padding: 20px;
}

.weather-error {
    background: rgba(255,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
}

.weather-results {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#weather-location {
    font-size: 28px;
    margin: 0 0 20px 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.weather-main {
    text-align: center;
    margin-bottom: 30px;
}

.weather-temp {
    font-size: 64px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.weather-description {
    font-size: 24px;
    margin-top: 10px;
    text-transform: capitalize;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
}

.weather-detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.weather-detail-item span:last-child {
    font-size: 22px;
    font-weight: bold;
}