/* Base styles for RS League Tracker */

.hidden {
    display: none !important;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 18px;
    color: #d4a017;
}

.spinner {
    border: 4px solid #444444;
    border-top: 4px solid #d4a017;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 18px;
    color: #ff4444;
    text-align: center;
}

.controls {
    margin: 20px 0;
    padding: 15px;
    background-color: #333333;
    border-radius: 8px;
    text-align: center;
}

.controls label {
    margin-right: 10px;
    color: #d4a017;
    font-weight: bold;
}

.controls select {
    margin-right: 20px;
    padding: 5px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #666666;
    border-radius: 4px;
}