/* ===== CORNERS PREDICTIONS COMMON STYLES ===== */
.corners-fixtures-table,
.corners-history-table,
.corners-stats-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #0B1C4B;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.corners-fixtures-table th,
.corners-history-table th,
.corners-stats-summary-table th {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.corners-fixtures-table td,
.corners-history-table td,
.corners-stats-summary-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #2A3F7A;
    border-right: 1px solid #2A3F7A;
    color: #fff;
    font-size: 13px;
    vertical-align: middle;
}

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

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

/* Prediction Cells */
.prediction-over {
    color: #4CAF50;
    font-weight: bold;
    background: rgba(76,175,80,0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #4CAF50;
}

.prediction-under {
    color: #F44336;
    font-weight: bold;
    background: rgba(244,67,54,0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #F44336;
}

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

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

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

.stats-bar-percentage {
    font-size: 11px;
    font-weight: bold;
    color: #FF9800;
    min-width: 25px;
}

/* Score States */
.score-correct {
    color: #4CAF50;
    font-weight: bold;
    background: rgba(76,175,80,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.score-incorrect {
    color: #F44336;
    font-weight: bold;
    background: rgba(244,67,54,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.score-pending {
    color: #FF9800;
    font-weight: bold;
    background: rgba(255,152,0,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Stats Summary */
.stats-summary {
    background: #0B1C4B;
    padding: 20px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    margin: 20px 0;
}

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

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

.stat-card.won-card {
    border-color: #4CAF50;
    background: rgba(76,175,80,0.05);
}

.stat-card.lost-card {
    border-color: #F44336;
    background: rgba(244,67,54,0.05);
}

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

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

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

.profit-negative {
    color: #F44336;
}

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

.corners-stats-btn:hover {
    background: linear-gradient(135deg, #FF5722, #FF9800);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255,87,34,0.3);
}

.prediction-badge-corners {
    background: #4CAF50;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
    vertical-align: middle;
}

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

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

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

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

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

/* Error Messages */
.corners-error {
    background: #F44336;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
}

/* Loading States */
.corners-loading {
    text-align: center;
    padding: 20px;
    color: #FF9800;
}

/* 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 {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form Indicators */
.form-indicator-H { color: #4CAF50; font-weight: bold; }
.form-indicator-M { color: #FF9800; font-weight: bold; }
.form-indicator-L { color: #F44336; font-weight: bold; }