/* Fogadási lehetőségek részletes nézet */
.table-all-odds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sport-card-dark);
    color: var(--neon-orange);
    border: 1px solid rgba(255, 115, 0, 0.3);
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.table-all-odds-btn:hover {
    background-color: rgba(255, 115, 0, 0.15);
    color: var(--neon-orange);
    border-color: var(--neon-orange);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 0 8px rgba(255, 115, 0, 0.3);
}

/* Fogadási részletek oldal stílusai */
.match-info-header {
    background: var(--sport-card-dark);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Kategória lapfülek stílusa */
#betCategoryTabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

/* Lapfül elemek, hogy ne törjenek több sorba */
#betCategoryTabs .nav-item {
    white-space: nowrap;
}