﻿:root {
    --weather-clear: linear-gradient(to bottom, #00c2ff, rgb(255 255 255)), url('../images/weather/Clean.jpg');
    --weather-clouds: url('../images/weather/Cloud.jpg');
    --weather-rain: url('../images/weather/Rain.jpg');
    --weather-storm: url('../images/weather/Storm.jpg');
    --weather-snow: url('../images/weather/Snow.jpg');
    --weather-mist: url('../images/weather/Mist.jpg');
    --weather-property-default-color: #fff;
    --weather-error-color: #ffebee;
    --weather-error-background-color: rgba(244, 67, 54, 0.8);
    --weather-error-strong-color: #ffcdd2;
    --weather-retry-button-color: #f44336;
    --weather-error-border-left: #f44336;
}

.weather-bg-clear {
    background-image: var(--weather-clear);
}

.weather-bg-clouds {
    background-size: 500px;
    background-image: var(--weather-clouds);
}

.weather-bg-rain {
    background-image: var(--weather-rain);
}

.weather-bg-storm {
    background-size: 500px;
    background-image: var(--weather-storm);
}

.weather-bg-snow {
    background-size: 500px;
    background-image: var(--weather-snow);
}

.weather-bg-mist {
    background-size: 500px;
    background-image: var(--weather-mist);
}


.k-header.k-grid-toolbar.k-grid-top {
    display: none;
}

.bebas {
    font-family: 'bebas_neueregular' !important;
}

.font30 {
    font-size: 30px;
}

.hdrGameSchedule {
    font-size: 30px;
    margin: -25px 0 -3px 0;
}

.hdrSchoolName {
    font-size: 60px;
    margin-left: -2px;
}

.bold {
    font-weight: bold;
}

button {
    text-shadow: 0;
}

span.k-dropdown-wrap.k-state-default {
    margin-top: 0;
}

.weatherProps {
    color: var(--weather-property-default-color);
}

.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 180px;
    color: var(--weather-property-default-color);
}

.loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.weather-error {
    color: var(--weather-error-color);
    background-color: var(--weather-error-background-color);
    padding: 15px;
    border-radius: 4px;
    margin: 10px;
    text-align: center;
    border-left: 4px solid var(--weather-error-border-left);
}

    .weather-error strong {
        display: block;
        margin-bottom: 5px;
        color: var(--weather-error-strong-color);
    }

.weather-retry-btn {
    background-color: var(--weather-property-default-color);
    color: var(--weather-retry-button-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

    .weather-retry-btn:hover {
        background-color: var(--weather-error-color);
    }

.weather-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .weather-content.loaded {
        opacity: 1;
    }

