/* Sports Betting Area - Clean and Simple */
.sports-content {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    margin: 0;
    padding: 0;
    background: #000;
    z-index: 10;
    overflow: hidden;
    box-sizing: border-box;
    transition: left 0.3s ease, width 0.3s ease;
}

.sports-content.active {
    display: block !important;
}

/* Remove any limitations from parent containers when sports is active */
.sports-content.active ~ .dashboard-main,
.sidebar.active ~ .dashboard-main:has(+ .sports-content.active),
body:has(.sports-content.active) .dashboard-main,
.dashboard-main:has(.sports-content.active) {
    padding: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* Ensure body and html don't have limitations */
body:has(.sports-content.active),
html:has(.sports-content.active) {
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sports-content iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}
