/* Same Odds Section - thscore2 style */
.same-odds-section {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Tab options */
.same-odds-section .fx-vote-data {
    padding: 20px 0 0;
}

.same-odds-section .bar {
    margin-bottom: 20px;
}

.same-odds-section .bar .options {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.same-odds-section .bar .options li {
    padding: 10px 28px;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 500;
}

.same-odds-section .bar .options li:hover {
    background: #e0e0e0;
}

.same-odds-section .bar .options li.on {
    background: var(--bs-primary);
    color: #fff;
}

/* Odds display */
.same-odds-section .odds-txt {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.same-odds-section .odds-txt b {
    display: inline-block;
    padding: 6px 16px;
    margin: 0 8px;
    background: #f0f0f0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
}

.same-odds-section .odds-txt b.blue {
    background: #e3f2fd;
    color: #1976d2;
}

.same-odds-section .odds-txt b.red {
    color: #d32f2f;
}

/* Vertical bars container */
.same-odds-section .fx-tb-a {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.same-odds-section .fx-tb-a .vote {
    text-align: center;
    min-width: 180px;
}

.same-odds-section .fx-tb-a .vote .item {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 120px;
    gap: 8px;
    margin-bottom: 10px;
}

/* Odds stats specific layout with paired bars */
.same-odds-section .fx-tb-a.odds-stats .vote {
    min-width: auto;
}

.same-odds-section .fx-tb-a.odds-stats .vote .item-wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.same-odds-section .fx-tb-a.odds-stats .vote .pair-group {
    text-align: center;
}

.same-odds-section .fx-tb-a.odds-stats .vote .pair-group .item {
    height: 120px;
    gap: 4px;
    margin-bottom: 8px;
}

.same-odds-section .fx-tb-a.odds-stats .vote .tit {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
}

.same-odds-section .fx-tb-a.odds-stats .vote .tit span {
    font-weight: 400;
    color: #666;
    font-size: 12px;
}

/* Goal difference section - same as odds stats */
.same-odds-section .fx-tb-a.goal-diff .vote {
    min-width: auto;
}

.same-odds-section .fx-ht-data {
    width: 58px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.same-odds-section .fx-ht-data .bar_shade {
    border-radius: 6px 6px 0 0;
    transition: height 0.3s ease;
    position: relative;
}

/* For 0% bars (2px height) */
.same-odds-section .fx-ht-data .bar_shade[style*="height: 2px"] {
    min-height: 2px;
}

.same-odds-section .fx-ht-data .home-bg {
    background: linear-gradient(180deg, #e85a2c 0%, #d0471e 100%);
}

.same-odds-section .fx-ht-data .draw-bg {
    background: linear-gradient(180deg, #95a5a6 0%, #7f8c8d 100%);
}

.same-odds-section .fx-ht-data .away-bg {
    background: linear-gradient(180deg, #6c69f8 0%, #5a57f0 100%);
}

/* Label positioned on top of bar (inside bar_shade, at top) */
.same-odds-section .fx-ht-data-w {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    text-shadow: none;
    white-space: nowrap;
}

.same-odds-section .fx-tb-a .vote .pItem {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Legend */
.same-odds-section .legend {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    padding-top: 5px;
    border-top: 1px solid #eee;
}

.same-odds-section .legend .ident {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.same-odds-section .legend .ident i {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
}

.same-odds-section .legend .ident i.home-bg {
    background: #d0471e;
}

.same-odds-section .legend .ident i.draw-bg {
    background: #7f8c8d;
}

.same-odds-section .legend .ident i.away-bg {
    background: #5a57f0;
}

.same-odds-section .legend .ident span {
    font-weight: 500;
}

.same-odds-section .legend .note {
    color: #999;
    font-size: 12px;
}

/* Loading state */
.same-odds-section .loading {
    text-align: center;
    padding: 50px;
    color: #999;
    font-size: 14px;
}

/* No data state */
.same-odds-section .no-data {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

/* Checkbox options */
.same-odds-section .option-rt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-right: 10px;
}

.same-odds-section .option-rt input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--bs-primary);
}

.same-odds-section .option-rt label {
    font-size: 13px;
    color: #666;
    cursor: pointer;
    margin-right: 15px;
}

.same-odds-section .option-rt label:last-child {
    margin-right: 0;
}

