/* Cards Predictions Common Styles */

/* Table Styles */
.cards-fixtures-table, .cards-history-table, .cards-stats-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    background: #0B1C4B;
    color: #fff;
    border: 1px solid #C6C6C6;
}

.cards-fixtures-table th, .cards-history-table th, .cards-stats-summary-table th {
    background-color: #0B1C4B;
    color: #FF9800;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border: 1px solid #C6C6C6;
}

.cards-fixtures-table td, .cards-history-table td, .cards-stats-summary-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #C6C6C6;
}

/* Prediction Classes */
.prediction-over {
    color: #4CAF50;
    font-weight: bold;
}

.prediction-under {
    color: #F44336;
    font-weight: bold;
}

/* Stats Bars */
.stats-bars-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stats-bar-wrapper {
    width: 50px;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.stats-bar-percentage {
    font-size: 12px;
    color: #fff;
}

/* Stats Summary */
.stats-summary {
    margin: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    background: #0B1C4B;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #FF9800;
    margin-bottom: 5px;
}

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

.won-card {
    border-color: #4CAF50;
}

.lost-card {
    border-color: #F44336;
}

.profit-positive {
    color: #4CAF50;
}

.profit-negative {
    color: #F44336;
}

/* Score Classes */
.score-correct {
    color: #4CAF50;
    font-weight: bold;
}

.score-incorrect {
    color: #F44336;
    font-weight: bold;
}

.score-pending {
    color: #FF9800;
}

/* Buttons */
.cards-stats-btn {
    display: inline-block;
    background: #FF9800;
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cards-stats-btn:hover {
    background: #e68900;
}

.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.prediction-badge-cards {
    background: #4CAF50;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

.prediction-badge-cards.zero-badge {
    background: #F44336;
}

/* Country Flag */
.country-flag {
    text-align: center;
}

/* Error Message */
.cards-error {
    color: #F44336;
    text-align: center;
    padding: 10px;
    background: #0B1C4B;
    border: 1px solid #F44336;
    border-radius: 4px;
}

/* SEO Content */
.seo-content-section {
    margin-bottom: 20px;
}

.seo-intro {
    background: #0B1C4B;
    padding: 20px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}