/* 1X2 Predictions Common Styles */
.prediction-error {
    color: #f44336;
    background: #ffebee;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f44336;
    text-align: center;
    margin: 10px 0;
}

.predictions-container {
    margin: 20px 0;
    overflow-x: auto;
}


/* Tables */
.prediction-fixtures-table, 
.prediction-history-table, 
.prediction-stats-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    background: #0B1C4B;
    color: white;
    border: 1px solid #C6C6C6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

.prediction-fixtures-table tr:nth-child(even), 
.prediction-history-table tr:nth-child(even) {
    background: #0a2a5e;
}

.prediction-fixtures-table tr:hover, 
.prediction-history-table tr:hover {
    background: #1a3a7e;
}

/* Prediction Cells */
.prediction-home {
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    padding: 6px 4px;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    min-width: 30px;
}

.prediction-draw {
    background: #FFC107;
    color: black;
    border-radius: 4px;
    padding: 6px 4px;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    min-width: 30px;
}

.prediction-away {
    background: #F44336;
    color: white;
    border-radius: 4px;
    padding: 6px 4px;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    min-width: 30px;
}

/* Probability Bars */
.probability-bars-container {
    display: flex;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #333;
}

.home-bar {
    background: #4CAF50;
    transition: width 0.3s ease;
}

.draw-bar {
    background: #FFC107;
    transition: width 0.3s ease;
}

.away-bar {
    background: #F44336;
    transition: width 0.3s ease;
}

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

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

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

.stat-card:hover {
    transform: translateY(-2px);
}

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

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

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.profit-negative {
    color: #F44336;
}

/* Value Bets */
.value-high {
    color: #4CAF50;
    font-size: 16px;
    font-weight: bold;
}

.value-medium {
    color: #FFC107;
    font-size: 16px;
    font-weight: bold;
}

/* Score Status */
.score-correct {
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
}

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

.score-pending {
    color: #FFC107;
    font-style: italic;
}

/* Buttons */
.prediction-stats-btn {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

.prediction-stats-btn:hover {
    background: linear-gradient(135deg, #F57C00, #EF6C00);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.prediction-badge {
    background: #4CAF50;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
}

.prediction-badge.zero-badge {
    background: #9E9E9E;
}

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

.country-flag img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

/* Lock Icons */
.fa-lock {
    opacity: 0.7;
}

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

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

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

/* 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;
}

/* Result Background Colors */
.result-correct {
    background-color: #d4edda !important; /* Ελαφρύ πράσινο */
    color: #155724;
}

.result-incorrect {
    background-color: #f8d7da !important; /* Ελαφρύ κόκκινο */
    color: #721c24;
}

/* Keep the existing score status classes for reference */
.score-correct {
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
}

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

.score-pending {
    color: #FFC107;
    font-style: italic;
}