/**
 * SportsRadar NCAAFB Statistics - Styles
 * 
 * Basic styling for the SportsRadar statistics display
 */

.sportsradar-stats-container {
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.sportsradar-stats-container .loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
}

.sportsradar-stats-container .error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.sportsradar-stats-container pre {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

/* Game Statistics Display */
.sportsradar-game {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sportsradar-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sportsradar-team {
    flex: 1;
    text-align: center;
}

.sportsradar-team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sportsradar-team-score {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.sportsradar-game-status {
    background: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.sportsradar-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sportsradar-stat-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.sportsradar-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sportsradar-stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sportsradar-game-header {
        flex-direction: column;
    }
    
    .sportsradar-team {
        margin: 10px 0;
    }
    
    .sportsradar-stats-grid {
        grid-template-columns: 1fr;
    }
}