/* BTTS Predictions Common Styles */
.btts-error {
    color: #f44336;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 4px;
}

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

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

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

.btts-fixtures-table tr:nth-child(even), .btts-history-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.btts-fixtures-table tr:hover, .btts-history-table tr:hover {
    background: rgba(255, 152, 0, 0.1);
}

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

.stats-bar-wrapper {
    flex: 1;
    background: #333;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.stats-bar-percentage {
    min-width: 40px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

/* Predictions */
.prediction-yes {
    color: #4CAF50;
    font-weight: bold;
}

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

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

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

.score-pending {
    color: #FF9800;
    font-weight: bold;
}

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

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

.stat-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #FF9800;
}

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

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

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

.lost-card .stat-value {
    color: #F44336;
}

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

.profit-negative {
    color: #F44336;
}

/* Buttons and Badges */
.btn-container {
    position: relative;
    display: inline-block;
}

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

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

.prediction-badge-btts {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediction-badge-btts.zero-badge {
    background: #999;
}

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

/* Confidence Cell */
.confidence-cell {
    font-weight: bold;
}

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

.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;
}

/* Responsive Table Container */
.predictions-container {
    overflow-x: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}