/* StatsBet Predictions Styles */

.statsbet-schedule {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.statsbet-day-section {
    margin-bottom: 30px;
}

.statsbet-date-header {
    font-size: 1.4em;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.statsbet-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.statsbet-match-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.statsbet-match-card-link:hover .statsbet-match-card {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.2);
    transform: translateY(-2px);
}

.statsbet-match-card {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.statsbet-kickoff-time {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.9em;
    font-weight: bold;
    color: #666;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
}

.statsbet-league-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 10px;
}

.statsbet-league-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 5px;
}

.statsbet-league-name {
    font-size: 0.85em;
    color: #666;
    text-align: center;
}

.statsbet-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.statsbet-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.statsbet-team-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}

.statsbet-team-name {
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.statsbet-vs {
    font-size: 0.9em;
    color: #999;
    padding: 0 10px;
}

.statsbet-prediction {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.statsbet-prediction-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 8px;
}

.statsbet-prediction-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
}

.statsbet-chance {
    color: #28a745;
    font-weight: 500;
}

.statsbet-odds {
    color: #6c757d;
}

.statsbet-no-matches {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 480px) {
    .statsbet-matches-grid {
        grid-template-columns: 1fr;
    }

    .statsbet-team-image {
        width: 40px;
        height: 40px;
    }
}
