/* Live Odds Block Styles - BEM */
.live-odds {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 32px;
}

/* Header Section */
.live-odds__header {
    text-align: center;
    padding: 0 0 16px;
}

.live-odds__title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.live-odds__subtitle {
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.32px;
}

/* Navigation Tabs - Pills Style */
.live-odds__tabs {
    display: flex;
    padding: 6px 8px;
    background: #f3f4f6;
    border-radius: 20px;
}

.live-odds__tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.live-odds__tab:hover {
    background: white;
    color: #000;
}

.live-odds__tab--active {
    color: #000;
    background: #ffffff;
    font-weight: 600;
}

/* Odds Table */
.live-odds__table-container {
    overflow-x: auto;
    margin-top: 52px;
    margin-bottom: 48px;
}

.live-odds__table {
    width: 100%;
}

.live-odds__header-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e5e7eb;
}

.live-odds__header-cell {
    padding: 16px 20px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #e5e7eb;
}

.live-odds__header-cell:first-child {
    text-align: left;
}

.live-odds__header-cell:not(:first-child) {
    text-align: center;
}

.live-odds__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    position: relative;
}

.live-odds__row:hover {
    background: #f3f4f6;
}

.live-odds__row:last-child {
    border-bottom: none;
}

.live-odds__row > div {
    padding: 16px 20px;
    font-size: 16px;
    color: #000;
    vertical-align: middle;
}

.live-odds__sportsbook {
    font-weight: 600;
    color: #111827;
    text-align: left;
}

.live-odds__cell {
    text-align: center;
}

/* Footer Section */
.live-odds__footer {
    background: #EFF6FF;
    padding: 20px 24px;
    text-align: center;
    border-radius: 20px;
}

.live-odds__footer-text {
    color: #0C15C0;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.32px;
}

/* Responsive Design */
@media (max-width: 768px) {    
    .live-odds__title {
        font-size: 20px;
    }
    
    .live-odds__subtitle {
        font-size: 14px;
    }
    
    .live-odds__tab {
        font-size: 13px;
    }

    .live-odds__table-container {
        margin: 48px 0;
    }
    
    .live-odds__header-cell,
    .live-odds__row > div {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .live-odds__footer {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .live-odds__title {
        font-size: 18px;
    }
    
    .live-odds__subtitle {
        font-size: 13px;
    }
    
    .live-odds__tab {
        font-size: 12px;
    }

    .live-odds__table-container {
        margin: 32px 0;
    }
    
    .live-odds__header-cell,
    .live-odds__row > div {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .live-odds__footer {
        padding: 14px 16px;
        font-size: 12px;
    }
}


/* Smooth transitions */
.live-odds__row {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.live-odds__tab {
    transition: background-color 0.2s ease, color 0.2s ease;
}