#odds-table{
    margin-bottom: 25px;
}

.odds-table-container {
    margin: 20px 0;
    max-width:100%;

}

.venue-info {
    padding: 10px 15px;
    background: #f9f9f9;
    border-left: 3px solid #666;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.odds-table {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: white;
}

.odds-header {
    background: #f5f5f5;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.odds-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.odds-row.alt {
    background: #fafafa;
}

.odds-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    width:50%;
}

.odds-value {
    width:50%;
    font-size: 14px;
    color: #666;
    text-align: left;
}

.odds-date {
    color: #666;
    font-size: 13px;
}

.odds-number {
    font-weight: 600;
    color: #333;
}

.odds-highlight {
    color: #2196F3;
    font-weight: 600;
}

.odds-bonus {
    background: #f0f7ff;
}

@media (max-width: 600px) {
    .odds-row {
        padding: 10px 12px;
    }

    .odds-label,
    .odds-value {
        font-size: 13px;
    }

    .odds-header {
        font-size: 14px;
        padding: 10px 12px;
    }
}