/* Weather Widget */
.weather-widget {
    position:fixed;
    top: 420px;
    left:5px;
    background: rgb(225, 228, 231);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 998;
}

.weather-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-icon {
    font-size: 3rem;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

.weather-condition {
    font-size: 0.9rem;
    color: #666;
}

/* Quick Stats */
.quick-stats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Announcement Ticker */
.announcement-ticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 3rem;
    font-weight: bold;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .weather-widget {
        top: 80px;
        left: 10px;
        padding: 0.8rem;
    }
    
    .weather-icon {
        font-size: 2rem;
    }
    
    .weather-temp {
        font-size: 1.2rem;
    }
}
