/* Base styles from dashboard */
.weather-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
}

.dashboard-card .card {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

/* Inherit header gradient */
.dashboard-card .card-header {
    background: linear-gradient(145deg, 
        #333333 0%, 
        #3d1a1a 25%,
        #4d0000 50%,
        #590000 75%,
        #660000 100%
    ) !important;
    opacity: 0.92;
    padding: 1rem;
    border: none;
    border-radius: 8px 8px 0 0;
    color: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dashboard-card .card-header i {
    font-size: 2rem;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.dashboard-card .card-title {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Climate specific styles */
.climate-content {
    padding: 2rem;
    background: rgba(77, 0, 0, 0.02);
    border-radius: 8px;
}

.climate-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.climate-info h4 {
    color: #4d0000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.climate-info p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.locations {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.locations h5 {
    color: #4d0000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.locations ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.locations li {
    color: #333;
    font-size: 1.1rem;
}

.climate-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.climate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.climate-btn.primary {
    background: linear-gradient(145deg, #4d0000, #660000);
    color: white;
}

.climate-btn.secondary {
    background: white;
    color: #4d0000;
    border: 2px solid #4d0000;
}

.climate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.signup-section {
    margin-top: 1rem;
}

.signup-section p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .climate-content {
        padding: 1rem;
    }
    
    .climate-info h4 {
        font-size: 1.5rem;
    }
    
    .locations ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}