/* Fallback styles if Tailwind fails to load */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --secondary-dark: #2980b9;
    --text-color: #333;
    --background-color: #f5f6fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: var(--secondary-color);
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem 2rem;
    flex: 1;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-top: auto;
}

.text-secondary {
    color: var(--secondary-color);
}

.weather-detail {
    padding: 0.75rem;
    border-radius: 0.375rem;
    background-color: #f9fafb;
}

/* Weather icon colors */
#weather-icon.wi-day-sunny {
    color: #f59e0b;
}

#weather-icon.wi-rain {
    color: #3b82f6;
}

#weather-icon.wi-fog {
    color: #9ca3af;
}

#weather-icon.wi-strong-wind {
    color: #14b8a6;
}

#weather-icon.wi-cloudy, #weather-icon.wi-day-cloudy {
    color: #6b7280;
}

/* UV Index colors */
.uv-low {
    color: #10b981;
}

.uv-moderate {
    color: #f59e0b;
}

.uv-high {
    color: #f97316;
}

.uv-very-high {
    color: #ef4444;
}

.uv-extreme {
    color: #8b5cf6;
} 