/* Standings-specific styles */
.sync-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sync-controls .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 600;
}

.sync-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sync-icon.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sync-status {
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
}

.sync-status.success {
    color: #27ae60;
}

.sync-status.error {
    color: #e74c3c;
}

.sync-status.loading {
    color: #3498db;
}

/* Loading and Empty States */
.empty-state {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-style: italic;
}

/* Animation for new rows */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#standings-table tbody tr {
    animation: slideIn 0.3s ease;
}

.fixture {
    animation: slideIn 0.3s ease;
}
