    /* mobile styles */
    @media (max-width: 991px) {
    /* Enhanced Mobile Bet Slip Badge Styles */
    .bet-slip-badge {
        background: linear-gradient(135deg, #ff6b35, #ffd700);
        color: #000000;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 900;
        border: 3px solid #ffffff;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: badgePulse 2s infinite;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        min-width: 28px;
        min-height: 28px;
    }

    .bet-slip-badge:not(:empty) {
        animation: badgeBounce 0.6s ease-out, badgeGlow 2s infinite;
    }

    @keyframes badgePulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6), 0 3px 6px rgba(0, 0, 0, 0.4);
        }
    }

    @keyframes badgeBounce {
        0% {
            transform: scale(0.3);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    }

    @keyframes badgeGlow {
        0%, 100% {
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        50% {
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8), 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
        }
    }

    /* Enhanced bet-slip-indicator for better visibility */
    .bet-slip-indicator {
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        border: 2px solid var(--betmgm-gold);
        border-radius: 25px;
        padding: 8px 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .bet-slip-indicator::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }

    .bet-slip-text {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Enhanced mobile-bottom-nav-top for better contrast */
    .mobile-bottom-nav-top {
        background: linear-gradient(135deg, #000000, #1a1a1a);
        border-top: 2px solid var(--betmgm-gold);
        padding: 12px 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-bottom-nav-top:hover {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    }

    .mobile-bottom-nav-top:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    }

    /* Additional badge enhancements for when it has content */
    .bet-slip-badge:not(:empty):not([style*="display: none"]) {
        background: linear-gradient(135deg, #ff0000, #ff6b35);
        border: 3px solid #ffffff;
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.5);
        animation: badgeAlert 1.5s infinite;
    }

    /* Accessibility improvements */
    .bet-slip-badge {
        /* Ensure high contrast for accessibility */
        color: #000000 !important;
        font-weight: 900 !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    /* Vibration effect for mobile devices when badge appears */
    @media (max-width: 991px) and (hover: none) and (pointer: coarse) {
        .bet-slip-badge:not(:empty):not([style*="display: none"]) {
            animation: badgeAlert 1.5s infinite, badgeVibrate 0.3s ease-in-out;
        }
    }

    @keyframes badgeVibrate {
        0%, 100% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-2px);
        }
        75% {
            transform: translateX(2px);
        }
    }

    @keyframes badgeAlert {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.5);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.8), 0 6px 12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 215, 0, 0.7);
        }
    }

    /* Responsive adjustments for different mobile screen sizes */
    @media (max-width: 480px) {
        .bet-slip-badge {
            width: 32px;
            height: 32px;
            font-size: 18px;
            min-width: 32px;
            min-height: 32px;
        }

        .bet-slip-indicator {
            padding: 10px 18px;
            gap: 14px;
        }

        .bet-slip-text {
            font-size: 18px;
        }
    }

    @media (max-width: 360px) {
        .bet-slip-badge {
            width: 30px;
            height: 30px;
            font-size: 16px;
            min-width: 30px;
            min-height: 30px;
        }

        .bet-slip-indicator {
            padding: 8px 14px;
            gap: 10px;
        }

        .bet-slip-text {
            font-size: 16px;
        }
    }

    /* Filters Flex Container Mobile Styles */
    .filters-flex-container {
        gap: 8px; /* Slightly smaller gap on mobile */
    }
    
    /* Prop Sort Container Mobile Styles */
    .prop-sort-container {
        /* No special mobile styling needed - identical to desktop */
    }

        .prop-sort-dropdown {
    /* No special mobile styling needed - identical to desktop */
}

        .prop-sort-select {
    min-width: 100px; /* Smaller minimum width on mobile */
}

        .prop-search-container {
    /* No special mobile styling needed - identical to desktop */
}

        .prop-search-input {
    width: 120px; /* Smaller width on mobile to fit all 3 elements */
    min-width: 100px; /* Smaller minimum width on mobile */
}

        .carousel-container {
            grid-column: auto;
            grid-row: auto;        
        }
    
        #dCarousel{
            height: 100px;
        }
        
        .main-container {
            display: block;
        }
    
        .sports-list-sidebar {
            display: none;
        }
        
        .game-section {
            grid-column: auto;
            grid-row: auto;
            margin-bottom: 15px;            
        }
    
        .right-sidebar {
            grid-column: auto;
            grid-row: auto;
            border: none;
            padding: 0;
            margin-top: 20px;
            max-width: none;
        }        
    
        .main-container {
            flex-direction: column;
        }
    
        .left-sidebar, .right-sidebar {
            width: 100%;
            border: none;
        }  
        
    
        .sports-nav {
            padding: 10px;
            padding-left: 0;
        }
    
        .sport-pill {
            margin: 0 3px;
            padding: 6px 12px;
            font-size: 12px;
        }
    
        .main-content {
            margin-bottom: 80px;
        }
    
        .game-section {
            margin-bottom: 50px;
        padding-bottom: 50px;
        }
    
            .teams-container {
        margin-bottom: 10px;
    }
    
        .game-header-row {
            margin-bottom: 4px;
            padding-left: 5px; /* Align with team logo (32px logo + 10px margin) */
        }

        .game-info-row {
            margin-bottom: 8px;
            padding-left: 5px; /* Align with team logo */
        }

        .game-date-time {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
        }

        .game-date {
            font-size: 11px;
        }

        .game-time {
            font-size: 10px;
            text-align: center;
            padding: 2px 4px;
            border-radius: 3px;
            width: 120px; /* Match the width of odds buttons container on mobile */
            margin-left: auto; /* Push to the right to align with odds buttons */
        }

        .game-tags {
            font-size: 10px;
        }
    
            .odds-headers {
        display: flex;
        gap: 6px;
        justify-content: flex-end;
        width: 240px;
        margin-left: auto;
    }
    
        .odds-header {
            flex: 1;
            text-align: center;
            font-size: 9px;
            font-weight: 600;
        }
    
        .team {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            
        }    
        
    
                .team-left {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .team-logo {
            width: 32px;
            height: 32px;
            font-size: 11px;
            margin-right: 10px;
        }

        .team-name {
            font-size: 12px;
        }

        /* Reduce font size for team names longer than 14 characters */
        .team-name.long {
            font-size: 10px;
        }
    
        .team-note {
            font-size: 11px;
        }
    
        /* Prop Section Mobile Styles */
        .prop-section {
            background-color: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 6px;
            margin-bottom: 12px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .prop-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .prop-section-header:hover {
            background-color: #e9ecef;
        }

        .prop-section-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--betmgm-darker);
        }

        .prop-section-toggle {
            color: var(--betmgm-gold);
            transition: transform 0.2s ease;
        }

        .prop-section-toggle.expanded {
            transform: rotate(180deg);
        }

        .prop-section-content {
            padding: 16px;
            background-color: #ffffff;
        }

        .prop-players-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .player-card {
            display: flex;
            align-items: center;
            padding: 6px 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .player-card:hover {
            transform: translateY(-1px);
        }

        .player-logo {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: #ffffff;
            font-weight: bold;
            flex-shrink: 0;
        }

        .player-name {
            flex: 1;
            font-size: 12px;
            font-weight: 500;
            color: var(--betmgm-darker);
            margin-right: 8px;
        }

        .player-odds {
            font-size: 12px;
            font-weight: bold;
            color: var(--betmgm-darker);
            background-color: #f8f9fa;
            padding: 10px 5px;
            border-radius: 4px;
            border: 2px solid transparent;
            width: 80px;
            text-align: center;
            flex-shrink: 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .player-odds:hover {
            background-color: var(--betmgm-gold);
            color: var(--betmgm-darker);
            border-color: var(--betmgm-gold);
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
        }

        .prop-section-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            background-color: #f8f9fa;
            border-top: 1px solid #f0f0f0;
            font-size: 11px;
            color: var(--betmgm-light-text);
        }

        .prop-section-info {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .prop-tag {
            color: var(--betmgm-red);
            font-weight: 600;
        }

        .prop-comment {
            font-style: italic;
        }

        .prop-section-datetime {
            gap: 12px;
            flex-direction: column;
            align-items: flex-end;
        }

        .prop-datetime {
            gap: 6px;
        }

        /* Sub-menu styles for prop lines on mobile */
        .sub-menu.sub-prop {
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sub-menu.sub-prop:hover {
            background-color: rgba(255, 215, 0, 0.1);
            border-radius: 4px;
        }

        .sub-menu.sub-prop .odds-button {
            background-color: transparent;
            border: 1px solid var(--betmgm-gold);
            color: var(--betmgm-gold);
        }

        .sub-menu.sub-prop .odds-button:hover {
            background-color: var(--betmgm-gold);
            color: var(--betmgm-darker);
        }
    
        .team-odds {
            display: flex;
            gap: 6px;
            width: 240px;
        }
    
        .odds-button {
            padding: 8px 6px;
            min-height: 40px;
            font-size: 11px;
            min-width: 65px;
        }
    
        .odds-button .odds-value {
            font-size: 13px;
        }
    
        .odds-button .odds-line {
            font-size: 10px;
        }

        /* Disabled/empty odds button styles for mobile */
        .odds-button.disabled {
            background-color: #e9ecef;
            color: #6c757d;
            cursor: not-allowed;
            opacity: 0.6;
            pointer-events: none;
        }

        .odds-button.disabled .odds-value,
        .odds-button.disabled .odds-line {
            color: #6c757d;
        }

        .odds-button.disabled:hover {
            background-color: #e9ecef;
            transform: none;
            box-shadow: none;
        }
    
        /* Mobile header button fixes */
        .btn-login, .btn-signup {
            padding: 8px 12px;
            font-size: 14px;
            min-width: 60px;
            text-align: center;
        }
    
        .btn-signup {
            margin-left: 5px;
        }
    
        .logo {
            font-size: 20px;
        }
    
        .logo-subtitle {
            font-size: 10px;
        }
    
        .d-desktop {
            display: none !important;
        } 
        .main-container {
            display: block;            
        }
        .main-scrollable{
            width: 100%;
            padding:3px;
            scrollbar-width: none; 
            padding-bottom: 150px;           
        }
        .main-scrollable, .right-sidebar {           
            max-height: none;            
            display: block;
        }
        .bet-slip {
            max-height: 80vh;
        }
        
        /* Hide bet slip container on mobile by default, show only in modal */
        #dBetSlipContainer {
            display: none !important;
        }
        
        /* Show bet slip container when in modal mode */
        #dBetSlipContainer.mobile-bet-slip-modal {
            display: block !important;
        }
        .footer {
            position: static;
            padding: 15px 10px;
        }
    
        .footer-content {
            max-width: 100%;
        }
    
        .footer-links {
            gap: 15px;
            margin-bottom: 12px;
        }
    
        .footer-link {
            font-size: 12px;
        }
    
        .social-media {
            gap: 12px;
            margin-bottom: 12px;
        }
    
        .social-link {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    
        .rg-link {
            font-size: 12px;
        }
    
        .copyright {
            font-size: 13px;
        }
    
        .mobile-bottom-nav {
            display: block;
        }
        .header .col-6.d-flex.align-items-center {        
            gap: 0;
        }
        .logo {
            font-size: 22px;
            margin-bottom: 0;
        }
        .logo-subtitle {
            font-size: 11px;
            margin-top: -2px;
            margin-left: 0;
            color: var(--betmgm-white);
        }
    
        #header-user-info {
            flex-direction: column;
            align-items: flex-end;
          }
          .user-info-clickable {
            padding: 8px;
            gap: 6px;
          }
        
          .user-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-size: 0.75rem;
            line-height: 1.1;
          }
          .user-name {
            font-size: 0.85rem;
          }
          .user-balance {
            font-size: 0.75rem;
          }
          .user-dropdown-porlet {
            min-width: 140px;
            padding: 0.15rem 0;
          }
          .user-dropdown-porlet .dropdown-item {
            padding: 6px 10px;
            font-size: 0.9rem;
          }
    }

    @media (min-width: 992px) {
        .d-mobile {
            display: none !important;
        }
    }

    /* Mobile Account Info Styles */
    @media (max-width: 991px) {        

        .player-name {
            font-size: 13px;
        }

        .player-pin {
            font-size: 11px;
        }

        .v-modal-section-divider {
            margin: 4px 0 3px 0;
        }

        .v-modal-item {
            padding: 4px 6px;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            min-height: 24px;
        }

        .v-modal-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            flex-shrink: 0;
            min-width: 0;
        }

        .v-modal-value {
            font-size: 12px;
            text-align: left;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .total-balance .v-modal-value {
            font-size: 14px;
        }

        .v-modal-message {
            padding: 8px;
            font-size: 12px;
            margin-top: 8px;
        }




        .v-modal-footer-btn {
            padding: 6px 12px;
            font-size: 12px;
            min-width: 70px;
        }

        .modal-buttons {
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Specific styling for DMyProfile modal buttons on mobile */
        #DMyProfile .modal-buttons {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: space-between;
        }

        #DMyProfile .modal-buttons button {
            flex: 1;
            min-width: 0;
            margin: 0;
            padding: 8px 6px;
            font-size: 11px;
        }

        #DMyProfile .modal-buttons button i {
            font-size: 10px;
        }

        .v-modal .v-modal-container {
            position: relative;
            margin-top: 60px;
            max-width: 99vw;
            width: 95%;
        }

        /* Mobile Alert Modal Styles */
        .alert-modal-container {
            margin-top: 80px;
            max-width: 99vw;
            width: 95%;            
        }

        .alert-modal-header-content {
            padding: 8px 0;
        }

        .alert-icon {
            font-size: 16px;
            margin-right: 6px;
        }

        .alert-title {
            font-size: 14px;
        }

        .alert-modal-body {
            padding: 15px;
        }

        .alert-message {
            font-size: 13px;
            line-height: 1.4;
        }

        .alert-modal-buttons .v-modal-footer-btn {
            padding: 8px 20px;
            font-size: 13px;
        }

        /* Mobile close button adjustments */
        .v-modal-header::after {
            top: 1px;
            right: 2px;
            width: 32px;
            height: 32px;
            font-size: 24px;
        }

        .sports-list-sidebar {
            display: none !important;
        }

        /* Mobile Sports List Styles */
    .mobile-sports-list {
        background-color: var(--betmgm-gray);
        border-radius: 10px;
        padding: 15px;
        margin: 10px 0;
    }

    .mobile-sports-list .sport-category {
        margin-bottom: 15px;
    }

    .mobile-sports-list .sport-category h3 {
        font-size: 14px;
        margin-bottom: 8px;
        padding: 6px 0;
    }

    .mobile-sports-list .league-item {
        margin-bottom: 6px;
    }

    .mobile-sports-list .league-header {
        padding: 6px 10px;
        font-size: 13px;
    }

    .mobile-sports-list .league-header .league-name {
        font-size: 13px;
    }

    .mobile-sports-list .league-types {
        margin-left: 15px;
    }

    .mobile-sports-list .type-item {
        padding: 4px 10px;
        font-size: 12px;
    }

    .mobile-sports-list .special-section {
        margin-bottom: 15px;
        padding-top: 10px;
    }

    .mobile-sports-list .special-section .type-item {
        padding: 6px 10px;
        font-size: 13px;
    }

               /* Sports Modal Styles - Golden Theme */
.sports-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
    justify-content: center;
    align-items: start;
    z-index: 9999;
    overflow-y: auto;
}

/* Style the existing divSportsList when in modal mode */
#divSportsList.mobile-sports-modal {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 98vw;
    max-width: 96vw;
    max-height: calc(85vh - 60px);
    background: var(--betmgm-darker);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
    display: block !important;
    padding-bottom: 80px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Mobile Sports Header - Hidden on Desktop */
.mobile-sports-header {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding: 5px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px 10px 0 0;
    position: relative;
    gap: 12px;
}

.mobile-sports-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-sports-close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--betmgm-gold);
    color: var(--betmgm-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: bold;
}

.mobile-sports-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.mobile-sports-close-btn:active {
    transform: scale(0.95);
}

/* Mobile Sports Title - Separate from header */
.mobile-sports-title {
    display: none;
    text-align: left;
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.01);
}

.mobile-sports-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--betmgm-white);
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
}

/* Automatic close button for mobile sports modal - positioned on divSportsList */
#divSportsList.mobile-sports-modal .mobile-sports-close-btn {
    content: '×';
    position: absolute;
    top: 3px;
    right: 0px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: end;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--betmgm-gold);
    color: var(--betmgm-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    text-decoration: none;
    font-weight: bold;
}

#divSportsList.mobile-sports-modal .mobile-sports-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

#divSportsList.mobile-sports-modal .mobile-sports-close-btn:active {
    transform: scale(0.95);
}

/* Remove the old :after pseudo-element styles */
#divSportsList.mobile-sports-modal::after {
    display: none;
}

#divSportsList.mobile-sports-modal::after:hover {
    display: none;
}

/* Make the close button area clickable */
#divSportsList.mobile-sports-modal {
    cursor: default;
}

/* Show mobile header when in modal mode */
#divSportsList.mobile-sports-modal .mobile-sports-header {
    display: flex;
}

/* Show mobile title when in modal mode */
#divSportsList.mobile-sports-modal .mobile-sports-title {
    display: block;
}

/* Ensure the modal works well on all mobile devices */

    /* .refresh-text {
                display: none;
            } */
            
            .btn-refresh {
                padding: 8px 12px;
                min-width: 40px;
                justify-content: center;
            }

            /* Mobile Filter Dropdown Styles */
            .section-header {
                padding: 10px 0;
            }

            .section-header-row:first-child {
                margin-bottom: 12px;
            }

            .section-actions-row {
                gap: 10px;
            }

            .section-filters {
                gap: 10px;
                flex-wrap: wrap;
            }

            .filter-dropdown-btn {
                padding: 8px 10px;
                font-size: 12px;
                min-width: 120px;
                background: #ffffff;
                border: 1px solid #ddd;
                color: #333;
            }

            .filter-dropdown-menu {
                min-width: 160px;
                margin-top: 2px;
                background: #ffffff;
                border: 1px solid #ddd;
            }

            .filter-dropdown-item {
                padding: 5px 8px;
                font-size: 12px;
                color: #333;
                border-bottom: 1px solid #eee;
            }

            /* Style for report dropdown items (dark theme) on mobile */
            .report-dropdown-item {
                padding: 8px 12px;
                color: #ffffff;
                cursor: pointer;
                display: block;
                transition: all 0.2s ease;
                border-bottom: 1px solid #333333;
                font-size: 12px;
                border-radius: 4px;
                text-decoration: none;
            }

            .report-dropdown-item:hover {
                background: #2a2a2a;
                color: #ffd700;
            }

            .report-dropdown-item:last-child {
                border-bottom: none;
            }

            /* Report-specific dropdown styles (dark theme) on mobile */
            .report-dropdown {
                position: relative;
                display: inline-block;
                flex-shrink: 0;
            }

            .report-dropdown-btn {
                background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
                border: 1px solid var(--betmgm-gold);
                border-radius: 6px;
                padding: 8px 10px;
                color: #ffffff;
                font-weight: 500;
                font-size: 12px;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 6px;
                transition: all 0.3s ease;
                min-width: 120px;
                justify-content: space-between;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            }

            .report-dropdown-btn:hover {
                background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
                border-color: #ffd700;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
            }

            .report-dropdown-arrow {
                transition: transform 0.3s ease;
                font-size: 11px;
                color: #888888;
            }

            .report-dropdown.active .report-dropdown-arrow {
                transform: rotate(180deg);
            }

            .report-dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1a1a1a;
                border: 1px solid #ffd700;
                border-radius: 6px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px) scale(0.95);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                margin-top: 2px;                
                transform-origin: top center;
                padding-left:0;
            }

            .report-dropdown.active .report-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
            }

}  

/* Bet Slip Modal Styles - Golden Theme */
.bet-slip-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
    justify-content: center;
    align-items: start;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Style the existing dBetSlipContainer when in modal mode */
#dBetSlipContainer.mobile-bet-slip-modal {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 98vw;
    max-width: 98vw;
    max-height: calc(90vh - 30px);
    background: var(--betmgm-darker);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
    display: block !important;
    padding-bottom: 80px;
}

/* Automatic close button for mobile bet slip modal - positioned on dBetSlipContainer */
#dBetSlipContainer.mobile-bet-slip-modal .mobile-bet-slip-close-btn {
    content: '×';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--betmgm-gold);
    color: var(--betmgm-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    text-decoration: none;
    font-weight: bold;
}

#dBetSlipContainer.mobile-bet-slip-modal .mobile-bet-slip-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

#dBetSlipContainer.mobile-bet-slip-modal .mobile-bet-slip-close-btn:active {
    transform: scale(0.95);
}

/* Remove the old :after pseudo-element styles */
#dBetSlipContainer.mobile-bet-slip-modal::after {
    display: none;
}

#dBetSlipContainer.mobile-bet-slip-modal::after:hover {
    display: none;
}

/* Make the close button area clickable */
#dBetSlipContainer.mobile-bet-slip-modal {
    cursor: default;
}

/* Show mobile header when in modal mode */
#dBetSlipContainer.mobile-bet-slip-modal .mobile-sports-header {
    display: flex;
}  

    @media (max-width: 991px) {
        .v-modal .v-modal-container {
            margin: 10px;
            max-width: calc(100vw - 20px);
            max-height: calc(100vh - 20px);
        }
        
        .report-modal-container {
            max-width: calc(100vw - 20px);
            max-height: calc(100vh - 40px);
            margin: 10px;
            display: flex;
            flex-direction: column;
            height: auto;
        }
        
        .report-modal-header {
            padding: 8px 10px;
        }
        
        .report-header-content {
            gap: 12px;
        }
        
        .report-header-icon {
            width: 24px;
            height: 24px;
        }
        
        .report-header-icon i {
            font-size: 10px;
        }
        
        .report-header-text .v-modal-title {
            font-size: 14px;
        }
        
        .report-modal-body {
            padding: 10px;
        }
        
        .report-filter-row {
            flex-direction: column;
            gap: 15px;
        }
        
        .report-filter-item {
            min-width: auto;
        }
        
        .report-table {
            font-size: 11px;
        }
        
        .report-table th,
        .report-table td {
            padding: 5px 4px;
        }
        
        .report-prev-week-row {
            display: none;
        }
        
        .report-prev-week-mobile {
            display: table-row;
        }
        
        .report-modal-footer .modal-buttons {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .v-modal-footer-btn {
            flex: 1;
            min-width: 120px;
            max-width: 200px;
        }
        
        /* Ensure modals are scrollable on mobile */
        .v-modal.show {
            overflow-y: auto;
            align-items: flex-start;
            padding: 10px 0;
        }

        /* Mobile Casino Grid Styles */
        .casino-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 12px;
        }

        .casino-card {
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .casino-image {
            height: 140px;
            border-radius: 8px 8px 0 0;
        }

        .casino-overlay {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 12px 8px;
            background: var(--betmgm-gray);
            border-radius: 0 0 8px 8px;
        }

        .casino-title {
            display: block;
            font-size: 14px;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            letter-spacing: 0.5px;
            margin-bottom: 2px;
            color: var(--betmgm-gold);
        }

        .casino-subtitle {
            display: block;
            font-size: 11px;
            opacity: 0.8;
            color: var(--betmgm-white);
        }

        #mobileNavButtons i{
            padding-right: 3px;
        }
        
        /* Improve table responsiveness on very small screens */
        @media (max-width: 480px) {
            .report-table {
                font-size: 11px;
            }
            
            .report-table th,
            .report-table td {
                padding: 6px 4px;
            }
            
            .report-modal-header {
                padding: 6px 8px;
            }
            
            .report-modal-body {
                padding: 8px;
            }
            
            .v-modal-footer-btn {
                min-width: 100px;
                font-size: 12px;
                padding: 8px 12px;
            }

            /* Extra small screen improvements for DMyProfile */
            #DMyProfile .v-modal-container {
                margin-top: 40px;
                width: 98%;
            }

            #DMyProfile .modal-buttons {
                gap: 4px;
            }

            #DMyProfile .modal-buttons button {
                padding: 6px 4px;
                font-size: 10px;
            }

            #DMyProfile .modal-buttons button i {
                font-size: 9px;
            }
        }

        /* Mobile Report Table 2-Column Layout */
       
            /* Open Report - 2-column layout: labels on left, data on right */
            #openReportTable {
                display: block;
                width: 100%;
            }
            
            #openReportTable thead {
                display: none;
            }
            
            #openReportTable tbody {
                display: block;
                width: 100%;
            }
            
            #openReportTable tr:not(.report-prev-week-row) {
                display: block;
                margin-bottom: 20px;
                padding: 16px;                
                border-radius: 8px;
                border: 2px solid var(--betmgm-light-gray);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }
            
            #openReportTable td {
                display: block;
                width: 100%;
                padding: 12px 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                text-align: left;
                margin-bottom: 8px;
                position: relative;
                padding-left: 20%;
            }
            
            #openReportTable td:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            #openReportTable td::before {
                content: attr(data-title);
                position: absolute;
                left: 0;
                top: 12px;
                font-weight: 700;
                color: var(--betmgm-gold);
                font-size: 10px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                width: 90px;
                text-align: left;
            }
            
            /* Better text formatting */
            #openReportTable td {
                line-height: 1.4;
                word-wrap: break-word;
            }
            
            /* Alternating background colors for even/odd rows */
            #openReportTable tr:nth-child(odd) td {
                background-color: rgba(255, 255, 255, 0.02);
            }
            
            #openReportTable tr:nth-child(even) td {
                background-color: rgba(255, 215, 0, 0.03);
            }           
           

            /* Graded Report - 2-column key-value layout */
            #gradedReportTable {
                display: block;
                width: 100%;
            }
            
            #gradedReportTable thead {
                display: none;
            }
            
            #gradedReportTable tbody {
                display: block;
                width: 100%;
            }
            
            #gradedReportTable tr:not(.report-prev-week-row) {
                display: block;
                margin-bottom: 20px;
                padding: 16px;                
                border-radius: 8px;
                border: 2px solid var(--betmgm-light-gray);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }
            
            #gradedReportTable td {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                padding: 12px 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                text-align: left;
                margin-bottom: 8px;
            }
            
            #gradedReportTable td:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            #gradedReportTable td::before {
                content: attr(data-title);
                font-weight: 700;
                color: var(--betmgm-gold);
                font-size: 10px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                text-align: left;
            }
            
            /* Style for the data content - right aligned */
            #gradedReportTable td > span,
            #gradedReportTable td > b,
            #gradedReportTable td > a {
                text-align: right;
                flex: 1;
            }
            
            /* Alternating background colors for even/odd rows */
            #gradedReportTable tr:nth-child(odd) td {
                background-color: rgba(255, 255, 255, 0.02);
            }
            
            #gradedReportTable tr:nth-child(even) td {
                background-color: rgba(255, 215, 0, 0.03);
            }
            
            /* Special styling for Previous Week Balance row */
            
            #gradedReportTable tr.report-prev-week-mobile {
                background-color: rgba(135, 206, 235, 0.15);
                border-left: 4px solid #87CEEB;
            }
            
            
            #gradedReportTable tr.report-prev-week-mobile td {
                background-color: rgba(135, 206, 235, 0.1);
            }           
            
            
            /* Mobile Previous Week Balance row */
            #gradedReportTable tr.report-prev-week-mobile td::before {
                content: attr(data-title);
                font-weight: 700;
                color: #87CEEB;
                font-size: 10px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }    
            
            /* Mobile special button styling for alignment with close button */
.mobile-special-btn {
    margin-right: 8px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--betmgm-gold);
    color: var(--betmgm-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.mobile-special-btn:hover {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.mobile-special-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.mobile-special-btn i {
    color: var(--betmgm-gold);
    font-size: 12px;
}

#divSportsList{
    padding:3px 10px;
}
    }

/* Make graded report grid stack vertically on mobile */
    @media (max-width: 991px) {
        #divGradedReportGrid .report-table {
            display: block;
            width: 100%;
        }

        #divGradedReportGrid .report-table thead {
            display: none;
        }

        #divGradedReportGrid .report-table tbody {
            display: block;
            width: 100%;
        }

        #divGradedReportGrid .report-table tr {
            display: block;
            margin-bottom: 20px;
            padding: 16px;
            border-radius: 8px;
            border: 2px solid var(--betmgm-light-gray);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        #divGradedReportGrid .report-table td {
            display: block;
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: left;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20%;
        }

        #divGradedReportGrid .report-table td:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        #divGradedReportGrid .report-table td::before {
            content: attr(data-title);
            position: absolute;
            left: 0;
            top: 12px;
            font-weight: 700;
            color: var(--betmgm-gold);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 90px;
            text-align: left;
        }
    }