/* Match section styles */
.betting-container {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
}

.betting-nav {
    background-color: #004781;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 40px;
    border-radius: 3px 3px 0 0;
    overflow-x: auto;
    white-space: nowrap;
}

.live-indicator {
    background-color: #007bff;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 12px;
}

.search-container {
    margin-left: auto;
    position: relative;
}

.search-container input {
    padding: 5px 10px;
    border-radius: 3px;
    border: none;
    width: 200px;
    font-size: 12px;
}

.sports-nav {
    display: flex;
    background-color: #0e2c55;
    color: white;
    padding: 0 10px;
    overflow-x: auto;
    border-bottom: 1px solid #1a3a64;
}

.sport-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

.sport-item.active {
    border-bottom: 2px solid #007bff;
    color: #fff;
    font-weight: bold;
}

.betting-content {
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
}

.betting-event {
    border-bottom: 1px solid #eee;
}

.event-header {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background-color: #f8f9fa;
}

.event-icon {
    margin-right: 10px;
}

.event-star {
    margin-right: 10px;
    color: #ccc;
    cursor: pointer;
}

.event-title {
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

.event-columns {
    display: flex;
    margin-left: auto;
    font-size: 11px;
    color: #777;
}

.match-row {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    background-color: #fff;
}

.match-row:hover {
    background-color: #f5f9ff;
}

.match-star {
    margin-right: 10px;
    color: #ccc;
    cursor: pointer;
}

.match-teams {
    width: 200px;
    position: relative;
}

.team {
    color: #333;
    margin-bottom: 3px;
}

.match-odds {
    display: flex;
    margin-left: auto;
}

.odd-value {
    color: #1a73e8;
    font-weight: bold;
    cursor: pointer;
}

.odd-value:hover {
    background-color: #e6f2ff;
}

.match-more {
    margin-left: 10px;
    color: #777;
    cursor: pointer;
}

.live-dot {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #13ba54;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .betting-container {
        overflow-x: auto;
    }
    
    .match-teams {
        min-width: 150px;
    }
    
    .event-columns div,
    .match-odds div {
        min-width: 40px;
    }
}
