/* Chi Tiết Trận Đấu Styles - Updated to match HTML structure */

/* Container */
.container {
    overflow: hidden;
    border-radius: 10px;
    width:68%;
}

.main-content {
    display:flex;
        gap: 20px;flex-wrap: wrap;
}

/* Match Title */
.match-title {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Match Detail Container */
.match-detail {
    background: white;
}

/* Match Header */
.match-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px 25px;
    position: relative;
}

.match-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

/* Teams Section */
.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.team {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.team img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team img:hover {
    transform: scale(1.05);
}

.team .name {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.team .name:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* Score Section */
.score {
    text-align: center;
}

.match-time {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
}

.current-score {
    font-size: 48px;
    font-weight: 900;
    margin: 15px 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.match-status {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.match-status.live {
    background: #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Match Events */
.match-events {
    padding:10px;
    border-bottom: 1px solid #284578;
}

.match-events h2 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}


/* Match Content */
.match-content {
    padding: 0;
}

/* Match Lineups */
.match-lineups {
    padding:10px;
    border-bottom: 1px solid #284578;
}

.match-lineups h3 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.lineups-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.home-lineup,
.away-lineup {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e9ecef;
}

.home-lineup h4,
.away-lineup h4 {
    color: #2a5298;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.coach {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}

.player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.player:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.player img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.player-number {
    background: #2a5298;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.player-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

/* Match Stats */
.match-stats {
    padding:10px;
    border-bottom: 1px solid #284578;
}

.match-stats h3 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.stats-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wcl-row {
    background: white;
    border-radius: 8px;
    padding:10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.wcl-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wcl-category {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.wcl-value {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #2a5298;
}

.wcl-category-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.wcl-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    height: 8px;
}

.wcl-chart {
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.wcl-betterSideBackground {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.wcl-worseSideOrEqualBackground {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
    margin-left: auto;
}

/* Stats2 Section */
.stats2 {
    padding:10px;
    border-bottom: 1px solid #284578;
}

.goal-stats,
.tech-stats {
    margin-bottom: 30px;
}

.goal-stats h4,
.tech-stats h4 {
    color: #2a5298;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.goal-stats-table,
.tech-stats-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.goal-stats-table th,
.tech-stats-table th,
.goal-stats-table td,
.tech-stats-table td {
    padding: 6px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.goal-stats-table th,
.tech-stats-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.goal-stats-table td,
.tech-stats-table td {
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s ease;
}

.goal-stats-table tr:hover,
.tech-stats-table tr:hover {
    background: #f8f9fa;
}

.highlight {
    background: #fff3cd !important;
    color: #856404 !important;
    font-weight: 700;
}

/* Match History */
.match-history {
    padding:10px;
}

.match-history h2 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {width:100%}
    .teams {
        gap: 20px;
    }
    
    .team img {
        width: 60px;
        height: 60px;
    }
    
    .team .name {
        font-size: 16px;
    }
    
    .current-score {
        font-size: 36px;
    }
    
    .lineups-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wcl-category {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .wcl-charts {
        margin-top: 10px;
    }
    
}

@media (max-width: 480px) {

    .match-header {
        padding: 20px 15px;
    }
    
    .team img {
        width: 50px;
        height: 50px;
    }
    
    .team .name {
        font-size: 14px;
    }
    
    .current-score {
        font-size: 28px;
    }
    
    .player {
        padding: 8px;
    }
    
}

/* H2H Stats Section */
.h2h-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding:10px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.h2h-stats p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding:10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item .team-name,
.stat-item .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #2a5298;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* History Container */
.history-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.history-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #2a5298;
}

.h2h-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.match-date {
    font-size: 14px;
    font-weight: 700;
    color: #2a5298;
    background: white;
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.league-name {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    font-style: italic;
}

.match-result {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-info.home {
    justify-content: flex-end;
}

.team-info.away {
    justify-content: flex-start;
}

.team-info.winner {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #b8dacc;
    transform: scale(1.02);
}

.team-info .team-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    min-width: 120px;
}

.team-info.winner .team-name {
    color: #155724;
}

.score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    min-width: 60px;
}

.team-info.winner .score-box {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: #1e7e34;
}

.score {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.ht-score {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 2px;
}

/* Previous Matches Section */
.previous-matches {
    padding:10px;
    border-bottom: 1px solid #e9ecef;
}

.previous-matches h2 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.previous-matches > p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
    font-style: italic;
}

.previous-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.home-previous, .away-previous {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #e9ecef;
}

.home-previous h3,
.away-previous h3 {
    color: #2a5298;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}

.previous-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.previous-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pre-header {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.previous-item .match-date {
    font-size: 12px;
    padding: 3px 8px;
}

.previous-item .league-name {
    font-size: 11px;
}

.previous-item .match-result {
    padding: 10px;
    gap: 5px;
}
.previous-item .team-info {padding:0}
.previous-item .team-info .team-name {
    font-size: 14px;
    min-width: auto;
}
.home .team-name {
    text-align: right;
}

.previous-item .score-box {
    padding: 8px 12px;
    min-width: 50px;
}

.previous-item .score {
    font-size: 16px;
}

.previous-item .ht-score {
    font-size: 10px;
}

/* Odds Comparison Section */
.odds-comparison {
    padding:10px;
    border-bottom: 1px solid #e9ecef;
}

.odds-comparison h2 {
    color: #2a5298;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.odds-comparison > p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
    font-style: italic;
}

/* Odds Tabs */
.odds-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.tab-link {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-link:hover {
    background: rgba(42, 82, 152, 0.1);
    color: #2a5298;
}

.tab-link.active {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.3);
}

/* Odds Container */
.odds-container {
    position: relative;
}

.odds-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.odds-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.odds-section h3 {
    color: #2a5298;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

/* European Odds Grid */
.odds-grid {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odds-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odds-header > div {
    padding: 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.odds-header > div:last-child {
    border-right: none;
}

.odds-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.odds-item:hover {
    background: #f8f9fa;
}

.odds-item:last-child {
    border-bottom: none;
}

.company-name {
    padding:10px;
    font-weight: 700;
    color: #2a5298;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    font-size: 14px;
}

#op .odds-column {
    padding: 8px;
    text-align: center;
    border-right: 1px solid #e9ecef;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
}

.odds-column:last-child {
    border-right: none;
}

.odds-value {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 50px;
}

.odds-value:hover {
    background: #2a5298;
    color: white;
    transform: scale(1.05);
}

.odds-value.home {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #90caf9;
    color: #1565c0;
}

.odds-value.draw {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
    border-color: #ffb74d;
    color: #ef6c00;
}

.odds-value.away {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-color: #ef9a9a;
    color: #c62828;
}

/* Odds Table */
.odds-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odds-table thead {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
}

.odds-table th {
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.odds-table th:last-child {
    border-right: none;
}

.odds-table td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    vertical-align: middle;
}

.odds-table td:last-child {
    border-right: none;
}

.odds-table tr:hover {
    background: #f8f9fa;
}

.odds-table tr:last-child td {
    border-bottom: none;
}

.odds-table .company-name {
    background: #f8f9fa;
    font-weight: 700;
    color: #2a5298;
    text-align: left;
    padding-left: 15px;
}

.odds-values {
    gap: 8px;
    align-items: center;
}

.odds-group {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    justify-content: center;
}

.odds-label {
    font-weight: 600;
    color: #6c757d;
    min-width: 35px;
    text-align: left;
}

.odds-group .odds-value {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #e9ecef;
    min-width: 40px;
}

.handicap {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%) !important;
}

.handicap-value {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: none;
}

/* Sidebar */

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .stats-summary {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .match-result {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .team-info {
        justify-content: center !important;
    }
    
    .previous-container {
        grid-template-columns: 1fr;
    }
    
    .odds-tabs {
        gap: 5px;
    }
    
    .odds-header,
    .odds-item {
        grid-template-columns: 1fr;
    }
    
    .odds-header > div,
    .odds-column {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .odds-table {
        font-size: 12px;
    }
    
    .odds-table th,
    .odds-table td {
        padding: 10px 5px;
    }
    
    .sidebar {
        margin-top: 20px;
        position: static;
    }
}

@media (max-width: 480px) {
    .h2h-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .team-info .team-name {
        min-width: auto;
        font-size: 14px;
    }
    
    .score-box {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .score {
        font-size: 16px;
    }
    
    .odds-value {
        min-width: 40px;
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .company-name {
        font-size: 12px;
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .odds-tabs,
    .sidebar {
        display: none;
    }
    
    .odds-section {
        display: block !important;
    }
    
    .history-item,
    .previous-item,
    .odds-item {
        break-inside: avoid;
    }
}

/* Dark Mode Support for New Sections */
@media (prefers-color-scheme: dark) {
    .h2h-stats,
    .home-previous,
    .away-previous {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .history-item,
    .previous-item {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .h2h-header,
    .pre-header {
        background: #404040;
        border-color: #555;
    }
    
    .team-info.winner {
        background: linear-gradient(135deg, #1e4d2b 0%, #2d5a3d 100%);
        border-color: #4a7c59;
    }
    
    .score-box {
        background: #404040;
        border-color: #555;
        color: #e9ecef;
    }
    
    .team-info.winner .score-box {
        background: linear-gradient(135deg, #198754 0%, #157347 100%);
    }
    
    .odds-tabs {
        background: #404040;
        border-color: #555;
    }
    
    .tab-link {
        color: #adb5bd;
    }
    
    .tab-link:hover {
        background: rgba(173, 181, 189, 0.1);
        color: #e9ecef;
    }
    
    .odds-grid,
    .odds-table {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .company-name {
        background: #404040;
        color: #e9ecef;
        border-color: #555;
    }
    
    .odds-value {
        background: #404040;
        border-color: #555;
        color: #e9ecef;
    }
    
    .odds-table th {
        border-color: #555;
    }
    
    .odds-table td {
        border-color: #404040;
        color: #e9ecef;
    }
    
    .sidebar {
        background: #2d2d2d;
        border-color: #404040;
    }
}
.flash-live-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.flash-live-container iframe {
    height: 300px;
}

@media (min-width: 768px) {
    .flash-live-container iframe {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .flash-live-container iframe {
        height: 550px;
    }
}
@media (max-width: 768px) {
    .match-events, .match-lineups, .match-stats, .stats2, .match-history, .previous-matches, .odds-comparison  {
        padding:10px;
    }
}
    
