#v-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10009;
}

#v-loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    background-color: var(--betmgm-dark);
    color: var(--betmgm-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    background-color: var(--betmgm-darker);
    border-bottom: 1px solid var(--betmgm-gray);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;            
}

/* Desktop Header - First Row */
.top-nav {
    padding: 10px 0;
    border-bottom: 1px solid var(--betmgm-gray);
}

.logo, .logo-subtitle {
  display: block;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--betmgm-gold);
  text-decoration: none;
  margin-bottom: 0;
}
.logo-subtitle {
  font-size: 12px;
  color: var(--betmgm-white);
  margin-top: -5px;
  margin-left: 0;
}

.nav-link {
    color: var(--betmgm-white) !important;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-link i {
    margin-right: 5px;
}

.nav-link.active {
    color: var(--betmgm-gold) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--betmgm-gold);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--betmgm-gold) !important;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.nav-link:active {
    color: var(--betmgm-gold) !important;
    transform: translateY(0);
    transition: all 0.1s ease;
}

.btn-login {
    background-color: green;
    color: var(--betmgm-white);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
}

.btn-signup {
    background-color: var(--betmgm-orange);
    color: var(--betmgm-white);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

/* Sports Navigation */
#sports-nav {
    min-height: 41px;
    background-color: var(--betmgm-gray);
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

#sports-nav:active {
    cursor: grabbing;
}

/* Sports Navigation with arrows */
#sports-nav .nav-tabs-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

#sports-nav .nav-tabs-container .container-fluid {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    user-select: none;
}

#sports-nav .nav-tabs-container .container-fluid::-webkit-scrollbar {
    display: none;
}

#sports-nav .nav-arrow {
    background: rgba(51, 51, 51, 0.8);
    border: 1px solid rgba(102, 102, 102, 0.6);
    color: var(--betmgm-text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
}

#sports-nav .nav-arrow:hover {
    background: rgba(102, 102, 102, 0.9);
    color: var(--betmgm-white);
    border-color: var(--betmgm-gold);
}

#sports-nav .nav-arrow:active {
    transform: scale(0.95);
}

#sports-nav .nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

#sports-nav .nav-arrow i {
    font-size: 12px;
    font-weight: bold;
}

/* Hide arrows on mobile when not needed */
@media (max-width: 768px) {
    #sports-nav .nav-arrow {
        width: 28px;
        height: 28px;
    }
    
    #sports-nav .nav-arrow i {
        font-size: 10px;
    }
}

.sport-pill {
    display: inline-block;
    background-color: var(--betmgm-light-gray);
    color: var(--betmgm-white);
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sport-pill.active {
    background-color: var(--betmgm-gold);
    color: var(--betmgm-darker);
}

.sport-pill i {
    margin-right: 5px;
}

/* Mobile Header Styles */
.mobile-nav-row {
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--betmgm-gray);
}

.mobile-nav-buttons {
    display: flex;
    gap: 10px;
}

.mobile-nav-btn {
    flex: 1;
    background-color: var(--betmgm-gray);
    color: var(--betmgm-white);
    border: none;
    padding: 5px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
}
.mobile-nav-btn.sports-btn {
    flex: 0 0 30%;
}
.mobile-nav-btn.search-btn {
    flex: 0 0 70%;
}

.mobile-nav-btn.report-btn {
    flex: 1;
    background-color: var(--betmgm-gold);
    color: var(--betmgm-darker);
    font-weight: 600;
}

.mobile-nav-btn.report-btn:hover {
    background-color: #e6b800;
    transform: translateY(-1px);
}

.mobile-nav-btn.report-btn:active {
    transform: translateY(0);
}

/* Layout Grid */
.main-container {
    display: grid;
    grid-template-columns: 220px 1fr 350px;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    min-height: calc(100vh - 120px);
}

    /* Carousel spans columns 1 and 2 on desktop */
    .carousel-container {
        grid-column: 1 / span 2;
        grid-row: 1;        
    }

     /* Sports list in left column (desktop only) */
     .sports-list-sidebar {
        grid-column: 1;
        grid-row: 2;
        background-color: var(--betmgm-gray);
        border-radius: 10px;
        padding: 0 0 10 10px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-width: 180px;
    }
    .sidebar-section {
        margin-top:10px;
        margin-bottom: 0;
    }
    .sidebar-title {
        color: var(--betmgm-gold);
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .search-container {
        position: relative;
        margin-bottom: 10px;
    }

    .sports-search-input {
        width: 100%;
        padding: 8px 35px 8px 12px;
        background-color: var(--betmgm-light-gray);
        border: 1px solid var(--betmgm-gold);
        border-radius: 4px;
        color: var(--betmgm-white);
        font-size: 14px;
        outline: none;
        transition: border-color 0.2s ease;
    }

    .sports-search-input::placeholder {
        color: var(--betmgm-light-text);
    }

    .sports-search-input:focus {
        background-color: var(--betmgm-gray);
    }

    .search-icon {
        position: absolute;
        right: 35px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--betmgm-light-text);
        font-size: 14px;
    }

    .clear-search-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--betmgm-light-text);
        font-size: 14px;
        cursor: pointer;
        transition: color 0.2s ease;
        display: none;
    }

    .clear-search-icon:hover {
        color: var(--betmgm-gold);
    }

    .v-not-match {
        display: none !important;
    }
    .sport-item {
        display: flex;
        align-items: center;
        padding: 8px 0;
        color: var(--betmgm-white);
        text-decoration: none;
        border-bottom: 1px solid var(--betmgm-light-gray);
        font-size: 15px;
        transition: color 0.2s;
    }
    .sport-item:last-child {
        border-bottom: none;
    }
    .sport-item:hover {
        color: var(--betmgm-gold);
    }
    .sport-item i {
        margin-right: 10px;
        width: 20px;
    }

    /* Dynamic Sports List Styles */
    .loading-sports {
        color: var(--betmgm-white);
        text-align: center;
        padding: 20px;
        font-size: 14px;
    }

    .sport-category {
        margin-bottom: 20px;
    }

    .sport-category h3 {
        color: var(--betmgm-gold);
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        padding: 8px 0;
        border-bottom: 1px solid var(--betmgm-light-gray);
    }

    .league-item {
        margin-bottom: 8px;
    }

    .league-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        color: var(--betmgm-white);
        text-decoration: none;
    }

    .league-header:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--betmgm-gold);
    }

    .league-header .league-info {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .league-header .league-icon {
        margin-right: 8px;
        width: 16px;
        text-align: center;
    }

    .league-header .league-name {
        font-weight: 500;
        font-size: 14px;
    }

    .league-header .live-indicator {
        color: #4ecdc4;
        margin-left: 4px;
        font-size: 12px;
    }

    .league-header .expand-icon {
        color: var(--betmgm-gold);
        transition: transform 0.2s ease;
    }

    .league-header.expanded .expand-icon {
        transform: rotate(180deg);
    }

    .league-types {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-left: 20px;
    }

    .league-types.expanded {
        max-height: 500px;
    }

    .type-item {
        display: flex;
        align-items: center;
        padding: 6px 12px;
        color: var(--betmgm-white);
        text-decoration: none;
        font-size: 13px;
        border-radius: 4px;
        margin: 2px 0;
        transition: all 0.2s ease;
    }

    .type-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--betmgm-gold);
    }

    .type-item.active {
        background: var(--betmgm-gold);
        color: var(--betmgm-darker);
        font-weight: 600;
    }

    .type-item.active:hover {
        background: var(--betmgm-gold);
        color: var(--betmgm-darker);
    }

    .type-item.live {
        background-color: rgba(78, 205, 196, 0.15);
        border-left: 3px solid #4ecdc4;
        color: var(--betmgm-white);
        font-weight: 500;
    }

    .type-item.live.active {
        background-color: #4ecdc4;
        color: var(--betmgm-darker);
        font-weight: 600;
        border-left: 3px solid #4ecdc4;
    }

    .type-item.live:hover {
        background-color: rgba(78, 205, 196, 0.25);
        color: var(--betmgm-gold);
    }

    .type-item.live.active:hover {
        background-color: #5dd8cf;
        color: var(--betmgm-darker);
    }

    .type-item .type-icon {
        margin-right: 8px;
        width: 16px;
        text-align: center;
    }

    .type-item .type-name {
        flex: 1;
    }

    .type-item .live-indicator {
        color: #4ecdc4;
        font-size: 10px;
        margin-left: 4px;
        font-weight: 600;
    }

    .type-item.live.active .live-indicator {
        color: var(--betmgm-darker);
    }

    /* Racebook and Casino sections */
    .special-section {
        margin-bottom: 20px;
        padding-top: 15px;
        border-top: 1px solid var(--betmgm-light-gray);
    }

    .special-section .type-item {
        font-weight: 500;
        padding: 8px 12px;
    }

    /* Game cards in middle column only */
    .game-section {
        grid-column: 2;
        grid-row: 2;
        background-color: var(--betmgm-white);
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 50px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Game Section Container - Main content area */
    .game-section-container {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        flex-direction: column;       
    }

    /* Bet Slip in right column */
    .right-sidebar {
        grid-column: 3;
        grid-row: 1 / span 3;
        width: 100%;            
        background-color: var(--betmgm-gray);            
        border-left: 1px solid var(--betmgm-light-gray);
        overflow-y: auto;
        scrollbar-width: thin;
        height:80%;
        max-height: 100%;
        padding-bottom: 20px;
    }

    /* Main Content */
    .main-content {
        flex: 1;
        padding: 20px;
        background-color: var(--betmgm-dark);
    }
    
     /* Swiper.js Carousel Styles */
     #dCarousel {
        width: 100%;
        height: 140px;
        border-radius: 10px;
        border: 1px solid var(--betmgm-gold);
        overflow: hidden;
    }    

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: var(--betmgm-dark);
        display: flex;
        justify-content: center;
        align-items: center;            
        border-radius: 8px;
        height: 100%;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }



    .section-header {
        display: flex;
        flex-direction: column;        
        color: var(--betmgm-darker);
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
    }

    .section-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

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

    .section-actions-row {
        justify-content: flex-start;
        gap: 15px;
    }

    .section-filters {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    /* Filter Dropdown Styles */
.filter-dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0; /* Prevent shrinking */
}

    .filter-dropdown-btn {
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 8px 12px;
        color: #333;
        font-weight: 500;
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        min-width: 140px;
        justify-content: space-between;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .filter-dropdown-btn:hover {
        background: #f8f9fa;
        border-color: #007bff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    }

    .filter-dropdown-btn:active {
        transform: translateY(0);
    }

    .filter-dropdown-btn i:first-child {
        color: var(--betmgm-gold);
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 12px;
        color: #666;
    }

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

    .filter-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        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: 3px;
        min-width: 300px;
        transform-origin: top center;
    }

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

    .filter-dropdown-item {
        padding: 5px 8px;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
        border-bottom: 1px solid #eee;
        font-size: 13px;
        border-radius: 4px;
    }

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

    .filter-dropdown-item:hover {
        background: #f8f9fa;
        color: #007bff;
    }

    .filter-dropdown-item i {
        width: 16px;
        text-align: center;
        color: #666;
    }

    .filter-dropdown-item:hover i {
        color: #007bff;
    }

    /* Ensure dropdown items don't look like links */
    .filter-dropdown-item a {
        color: inherit;
        text-decoration: none;
    }

    .filter-dropdown-item a:hover {
        color: inherit;
        text-decoration: none;
    }

    /* Style for report dropdown items (dark theme) */
    .report-dropdown-item {
        padding: 10px 15px;
        color: #ffffff;
        cursor: pointer;
        display: block;
        transition: all 0.2s ease;
        border-bottom: 1px solid #333333;
        font-size: 13px;
        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) */
    .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 12px;
        color: #ffffff;
        font-weight: 500;
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        min-width: 140px;
        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: var(--betmgm-gold);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }

    .report-dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 12px;
        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 var(--betmgm-gold);
        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: 3px;        
        transform-origin: top center;
        padding-left:0;
    }

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

   

    /* Loading and No Games States */
    .loading-games {
        text-align: center;
        padding: 40px 20px;
        color: var(--betmgm-darker);
        font-size: 16px;
        background: #f8f9fa;
        border-radius: 8px;
        margin: 20px 0;
    }

    .loading-games i {
        margin-right: 10px;
        color: var(--betmgm-gold);
    }

    .no-games {
        text-align: center;
        padding: 40px 20px;
        color: #6c757d;
        font-size: 16px;
        background: #f8f9fa;
        border-radius: 8px;
        margin: 20px 0;
        border: 1px dashed #dee2e6;
    }

    .section-title {
        font-size: 16px;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .section-title i {
        margin-right: 10px;
        color: var(--betmgm-orange);
    }

    .game-section-body {
        min-height: 200px;
    }

    /* Casino Grid Styles */
    .casino-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .casino-card {
        background: var(--betmgm-gray);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .casino-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .casino-link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }

    .casino-image {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 12px 12px 0 0;
    }

    .casino-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .casino-card:hover .casino-image img {
        transform: scale(1.05);
    }

    .casino-overlay {
        display: none;
    }

    .casino-title {
        display: none;
    }

    .casino-subtitle {
        display: none;
    }

    .game-item {
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 0;
    }

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





    .teams-container {
        margin-bottom: 15px;
    }

    .game-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
        padding-left: 5px; /* Align with team logo (40px logo + 12px margin) */
    }

    .game-info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        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 {
        color: var(--betmgm-darker);
        font-size: 12px;
        font-weight: 600;
    }

    .game-time {
        color: var(--betmgm-dark);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        padding: 2px 6px;
        border-radius: 3px;
        width: 140px; /* Match the width of odds buttons container */
        margin-left: auto; /* Push to the right to align with odds buttons */
    }

    .game-tags {
        color: var(--betmgm-darker);
        font-size: 11px;
        font-style: italic;
    }

    .game-time.future {
        color: var(--betmgm-darker);
    }

    .odds-headers {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
        width: 280px; /* Increased width for wider odds buttons */
    }

    .odds-header {
        flex: 1;
        text-align: center;
        font-size: 10px;
        color: var(--betmgm-darker);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    .team {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;        
    }

    .team-left {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .team-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--betmgm-white);
        font-weight: bold;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .team-info {
        color: var(--betmgm-darker);
    }

    .team-name {
        font-weight: bold;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .team-note {
        font-size: 12px;
        color: var(--betmgm-light-text);
        font-style: italic;
    }

    .team-odds {
        display: flex;
        gap: 8px;
        width: 280px; /* Increased width for wider odds buttons */
    }

    .odds-button {
        flex: 1;
        background-color: #f8f9fa;
        color: var(--betmgm-darker);
        padding: 8px 6px;
        border-radius: 6px;
        text-align: center;
        font-size: 13px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 40px;
    }

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

    .odds-button .odds-value {
        font-weight: bold;
        margin-bottom: 2px;
        font-size: 14px;
        color: var(--betmgm-darker);
    }

    .odds-button .odds-line {
        font-size: 12px;
        color: var(--betmgm-darker);
        font-weight: 500;
    }

    .odds-button:hover .odds-value,
    .odds-button:hover .odds-line {
        color: var(--betmgm-darker);
    }

    /* Disabled/empty odds button styles */
    .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;
    }

    /* Selected/Highlighted odds button styles */
    .odds-button.selected {
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        border-color: var(--betmgm-gold);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
        position: relative;
    }

    .odds-button.selected::after {
        content: '✓';
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        border: 2px solid var(--betmgm-darker);
    }

    .odds-button.selected .odds-value,
    .odds-button.selected .odds-line {
        color: var(--betmgm-darker);
    }

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

    /* Prop Section 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: 14px;
        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: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 32px;
    }

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

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

    /* Selected/Highlighted player card styles */
    .player-card.selected {
        background-color: rgba(255, 215, 0, 0.1);
        border-radius: 6px;
        padding: 8px;
        margin: -8px;
        position: relative;
    }

    .player-card.selected::after {
        content: '✓';
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        border: 2px solid var(--betmgm-darker);
        z-index: 10;
    }

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

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

    .player-odds {
        font-size: 13px;
        font-weight: bold;
        color: var(--betmgm-darker);
        background-color: #f8f9fa;
        padding: 10px;
        border-radius: 6px;
        border: 2px solid transparent;
        width: 90px;
        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 8px rgba(255, 215, 0, 0.3);
    }

    /* Selected/Highlighted prop odds button styles */
    .player-odds.selected {
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        border-color: var(--betmgm-gold);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
        position: relative;
    }

    .player-odds.selected::after {
        content: '✓';
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        border: 2px solid var(--betmgm-darker);
    }

    .player-odds.selected:hover {
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        border-color: var(--betmgm-gold);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px 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: 8px;
    }

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

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

    .prop-section-datetime {
        display: flex;
        align-items: center;
        gap: 12px;
    }

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

    /* Sub-menu styles for prop lines */
    .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: 6px;
    }

    .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);
    }

    /* Right Sidebar */
    .right-sidebar {            
        background-color: var(--betmgm-gray);
        
        border-left: 1px solid var(--betmgm-light-gray);
    }

    /* Bet Slip */
    .bet-slip {
        background-color: var(--betmgm-light-gray);
        border-radius: 10px;
        padding: 10px;
        position: -webkit-sticky;
position: sticky;
top: 20%;
    }

    .slip-tabs {
        display: flex;
        margin-bottom: 20px;
    }

    .slip-tab {
        flex: 1;
        background-color: var(--betmgm-gray);
        color: var(--betmgm-white);
        border: none;
        padding: 10px;
        text-align: center;
        cursor: pointer;
    }

    .slip-tab.active {
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
    }

    .straights-section {
        margin-bottom: 20px;
    }

    .straights-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .straights-title {
        color: var(--betmgm-white);
        font-weight: bold;
    }

    .bet-item {
        background-color: var(--betmgm-gray);
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 10px;
        position: relative;
    }

    .bet-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: var(--betmgm-text);
        cursor: pointer;
    }

    .bet-player {
        font-weight: bold;
        color: var(--betmgm-white);
        margin-bottom: 5px;
    }

    .bet-details {
        font-size: 12px;
        color: var(--betmgm-text);
        margin-bottom: 10px;
    }

    .bet-odds {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .odds-value {
        font-size: 18px;
        font-weight: bold;
        color: var(--betmgm-white);
    }

    .stake-button {
        background-color: var(--betmgm-light-gray);
        color: var(--betmgm-white);
        border: none;
        padding: 5px 15px;
        border-radius: 3px;
        cursor: pointer;
    }

    .clear-all {
        background: none;
        border: none;
        color: var(--betmgm-text);
        font-size: 12px;
        cursor: pointer;
    }

    .slip-summary {
        border-top: 1px solid var(--betmgm-text);
        padding-top: 15px;
        margin-bottom: 20px;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .summary-label {
        color: var(--betmgm-text);
    }

    .summary-value {
        color: var(--betmgm-white);
        font-weight: bold;
    }

    .login-to-bet {
        width: 100%;
        background-color: var(--betmgm-gold);
        color: var(--betmgm-darker);
        border: none;
        padding: 15px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

    /* Footer */
    .footer {
        grid-column: 1 / span 2;
        background-color: var(--betmgm-gray);
        padding: 20px;
        text-align: center;
        color: var(--betmgm-text);
        margin-top: 30px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 15px;
    }

    .footer-link {
        color: var(--betmgm-text);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: var(--betmgm-gold);
        text-decoration: none;
    }

    .social-media {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-top:15px;
        margin-bottom: 15px;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--betmgm-light-gray);
        color: var(--betmgm-text);
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .social-link:hover {
        background-color: var(--betmgm-gold);
        color: var(--betmgm-dark);
        transform: translateY(-2px);
        text-decoration: none;
    }

    .responsible-gambling {
        margin-bottom: 15px;
    }

    .rg-link {
        color: var(--betmgm-orange);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .rg-link:hover {
        color: var(--betmgm-gold);
        text-decoration: none;
    }

    .rg-link i {
        font-size: 16px;
    }

    .copyright {
        color: var(--betmgm-light-text);
        font-size: 13px;
        margin: 0;      
        padding-bottom: 10px;  
    }

    /* Touch-friendly scrolling */
    #sports-nav {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

     /* Top nav vertical separator */
     .top-nav-separator {
        display: inline-block;
        width: 2px;
        height: 24px;
        background: var(--betmgm-light-gray);
        margin: 0 16px 0 8px;
        vertical-align: middle;
    }

    html,body {        
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    .main-container {
        display: flex;
        min-height: 100vh;
        height: 100vh;
        padding-bottom: 0;
    }
    .main-scrollable {
        padding:5px;
        margin-right:5px;
        flex: 1 1 0;
        width: 75%;
        height: 80%;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 28% 72%;
        grid-template-rows: auto 1fr auto;
        grid-template-areas:
            "carousel carousel"
            "sidebar games"
            "footer footer";
        scrollbar-width: thin;
        padding-bottom: 120px;
         max-height: 100%;
        
    }
    .main-scrollable::-webkit-scrollbar {
        width: 6px;
    }
    .main-scrollable::-webkit-scrollbar-thumb {
        background: var(--betmgm-gold);
        border-radius: 3px;
    }
    .main-scrollable::-webkit-scrollbar-track {
        background: var(--betmgm-gray);
    }
    .carousel-container {
        grid-area: carousel;
    }
    .sports-list-sidebar {
        grid-area: sidebar;
        min-width: 0;
        max-width: 100%;
        overflow: visible;
    }

    .footer {
        grid-area: footer;
        width: 100%;
        min-height: 60px;
        background-color: var(--betmgm-gray);
        padding: 20px;
        text-align: center;
        color: var(--betmgm-text);
        position: relative;
    }
    .right-sidebar {
        width: 25%;        
        display: flex;
        flex-direction: column;
    }
    .bet-slip {
        flex: 1 1 auto;        
        min-height: 0;
        max-height: 100%;       
        
    }
    .bet-slip::-webkit-scrollbar {
        width: 6px;
    }
    .bet-slip::-webkit-scrollbar-thumb {
        background: var(--betmgm-gold);
        border-radius: 3px;
    }
    .bet-slip::-webkit-scrollbar-track {
        background: var(--betmgm-light-gray);
    }
    
    /* Sport Navigation Styles */
    .sport-nav-primary {
        background-color: var(--betmgm-gray);
        border-bottom: 1px solid var(--betmgm-light-gray);
        padding: 0 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 50px;
    }
    
    .nav-tabs {
        display: flex;
        gap: 30px;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex: 1 1 auto;
    }
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .nav-tab {
        background: none;
        border: none;
        color: var(--betmgm-text);
        font-size: 14px;
        font-weight: 500;
        padding: 10px;
        cursor: pointer;
        position: relative;
        transition: color 0.2s ease;
        white-space: nowrap;
    }
    
    .nav-tab:hover {
        color: var(--betmgm-white);
    }
    
    .nav-tab.active {
        color: var(--betmgm-white);
    }
    
    .nav-tab.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--betmgm-gold);
    }
    
    .nav-tab:not(:last-child)::before {
        content: '';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background-color: var(--betmgm-light-gray);
    }

    /* Navigation arrows container */
    .nav-tabs-container {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    /* Navigation arrows */
    .nav-arrow {
        background: rgba(51, 51, 51, 0.8);
        border: 1px solid rgba(102, 102, 102, 0.6);
        color: var(--betmgm-text);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
        z-index: 10;
        backdrop-filter: blur(4px);
    }

    .nav-arrow:hover {
        background: rgba(102, 102, 102, 0.9);
        color: var(--betmgm-white);
        border-color: var(--betmgm-gold);
    }

    .nav-arrow:active {
        transform: scale(0.95);
    }

    .nav-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    .nav-arrow i {
        font-size: 12px;
        font-weight: bold;
    }

    /* Hide arrows on mobile when not needed */
    @media (max-width: 768px) {
        .nav-arrow {
            width: 28px;
            height: 28px;
        }
        
        .nav-arrow i {
            font-size: 10px;
        }
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3000;
        background: #111;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding: 0;
        display: none;
    }
    .mobile-bottom-nav-top {
        background-color: var(--betmgm-gray);
        padding: 12px 20px;
        border-bottom: 1px solid var(--betmgm-light-gray);
    }
    .bet-slip-indicator {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .bet-slip-badge {
        background-color: var(--betmgm-light-gray);
        color: var(--betmgm-white);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }
    .bet-slip-text {
        color: var(--betmgm-white);
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-bottom-nav-inner {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 64px;
    }
    .mobile-bottom-nav-btn {
        background: none;
        border: none;
        color: #ccc;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 13px;
        padding: 8px 0 0 0;
        transition: color 0.2s;
    }
    .mobile-bottom-nav-btn.active,
    .mobile-bottom-nav-btn:active,
    .mobile-bottom-nav-btn:focus {
        color: #fff;
    }
    .mobile-bottom-nav-icon {
        font-size: 26px;
        margin-bottom: 2px;
    }
    .mobile-bottom-nav-label {
        font-size: 12px;
        font-weight: 500;
        margin-top: 2px;
    }
    .custom-carousel-container {
        background: none;
        border-radius: 12px;
        padding: 1px;
        overflow: hidden;
        border: 1px solid var(--betmgm-gold);
    }
    .custom-carousel-item {
        width: auto;
        margin-right: 12px;
        height: 100%;
    }
    .custom-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        user-select: none;
        -webkit-user-drag: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
    }      
    
    #header-user-info {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px; /* reduced gap */
      }
      
      .user-info-clickable {
        display: flex;
        align-items: center;
        gap: 6px; /* reduced gap */
        cursor: pointer;
        padding: 4px 10px; /* reduced padding */
        border-radius: 20px; /* slightly smaller */
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        transition: box-shadow 0.2s;
      }
      
      .user-info-clickable:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      }
      
      .user-avatar {
        width: 32px; /* smaller avatar */
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        border: 1.5px solid #e0e0e0;
      }
      
      .user-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      
      .user-name {
        font-weight: 600;
        font-size: 0.95rem; /* smaller font */
        color: #222;
      }
      
      .user-balance {
        font-size: 0.85rem; /* smaller font */
        color: #4caf50;
        font-weight: 500;
      }
      
      .user-dropdown-arrow {
        margin-left: 4px;
        font-size: 1em; /* smaller arrow */
        color: #888;
      }
      
      .user-dropdown-porlet {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        margin-top: 8px;
        min-width: 180px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.12);
        z-index: 100;
        padding: 0.25rem 0;
      }
      
      .user-dropdown-porlet.active {
        display: block;
      }
      
      .dropdown-section {
        padding: 0.5rem 0;
      }
      
      .dropdown-item {
        padding: 10px 20px;
        cursor: pointer;
        color: #222;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        transition: background 0.15s;
      }
      
      .dropdown-item:hover {
        background: #f5f5f5;
      }
      
      .user-dropdown-porlet .dropdown-section {
        padding: 0.25rem 0;
      }
      .user-dropdown-porlet .dropdown-item {
        padding: 7px 14px;
        font-size: 0.95rem;
        gap: 7px;
      }
      .user-dropdown-porlet hr {
        margin: 0.25rem 2px 0.15rem 2px;
        border: none;
        border-top: 2px solid #ccc;
      }

    #userDropdownPorlet .dropdown-item:hover {
      background: #f5f5f5;
      color: #222 !important;
    }

    /* Account Info Modal Styles */
    .v-modal-info-container {
        margin: 0 auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }   

    .v-modal-title {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .player-pin {
        color: var(--betmgm-white);
        font-size: 12px;
        opacity: 0.8;
    }

    /* Modal Body */
    .v-modal-body {
        padding: 12px 16px;
        flex: 1;
    }
    
    /* Login modal body specific styling */
    #DLogin .v-modal-body {
        padding: 24px 20px 20px 20px;
    }

    .v-modal-section {
        margin-bottom: 12px;
    }
    
    /* Login modal section styling */
    #DLogin .v-modal-section {
        margin-bottom: 20px;
    }
    
    #DLogin .v-modal-section:last-child {
        margin-bottom: 16px;
    }

    .v-modal-section:last-child {
        margin-bottom: 0;
    }

    .v-modal-section-divider {
        position: relative;
        margin: 8px 0 6px 0;
    }

    .v-modal-section-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--betmgm-gold), transparent);
        transform: translateY(-50%);
    }

    .v-modal-grid {
        display: grid;
        gap: 4px;
    }

    .v-modal-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }

    .v-modal-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .v-modal-label {
        color: var(--betmgm-white);
        font-weight: 500;
        font-size: 13px;
        text-align: right;
        flex: 1;
        padding-right: 15px;
    }

    .v-modal-value {
        color: var(--betmgm-gold);
        font-weight: 600;
        font-size: 14px;
        text-align: left;
        flex: 1;
        padding-left: 15px;
    }

    .v-modal-value.negative {
        color: #ff6b6b;
    }



    .withdraw-available {
        color: #4ecdc4;
        font-weight: 700;
    }

    .total-balance {
        background: rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.3);
    }

    .total-balance .v-modal-value {
        color: var(--betmgm-gold);
        font-size: 16px;
        font-weight: 700;
    }

    .v-modal-message {
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        border-radius: 6px;
        padding: 10px;
        margin-top: 12px;
        color: var(--betmgm-white);
        font-size: 13px;
        line-height: 1.4;
        white-space: pre-wrap;
    }

    .v-modal-message i {
        color: var(--betmgm-gold);
        margin-right: 6px;
    }

    /* Modal Footer Button Styles */  

    .v-modal-footer-btn {
        background: var(--betmgm-gold);
        color: var(--betmgm-darker);
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s ease;
        min-width: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .v-modal-footer-btn:hover {
        background: #e6b800;
        transform: translateY(-1px);
    }

    .v-modal-footer-btn:active {
        transform: translateY(0);
    }

    /* Modal Dropdown Styles */
    .v-modal-drp {
        width: 100%;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid var(--betmgm-light-gray);
        background: var(--betmgm-darker);
        color: var(--betmgm-white);
    }

    /* Modal Input Styles */
    .v-modal-input {
        width: 100%;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid var(--betmgm-light-gray);
        background: var(--betmgm-darker);
        color: var(--betmgm-white);
    }

    /* Modal Checkbox Styles */
    .v-modal-checkbox-label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
    }

    .v-modal-checkbox {
        width: 16px;
        height: 16px;
        accent-color: var(--betmgm-gold);
        cursor: pointer;
    }

    .v-modal-checkbox-text {
        color: var(--betmgm-white);
        font-size: 14px;
    }

    /* Modal Error Message Styles */
    .v-modal-message.error {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        border-radius: 6px;
        padding: 12px;
        color: #dc3545;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

    .v-modal-message.error i {
        color: #dc3545;
        font-size: 16px;
    }

    /* Generic Modal Styles */
    .v-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: start;
        z-index: 9999;
    }



    /* Modal Header */
    .v-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        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;
    }

    /* Close button for modal headers - now handled by JavaScript */
    
    .v-modal-close-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--betmgm-white);
        font-size: 20px;
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.2s;
        z-index: 10;
    }
    
    .v-modal-close-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    
    .v-modal.show {
        display: flex;
        overflow-y: auto;
    }

    /* Make the close button area clickable */
    .v-modal-header {
        cursor: default;
    }

    .v-modal .v-modal-container {
        background: var(--betmgm-darker);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;  
        position: relative;
        margin-top: 60px;
        max-width: 60vw;
        width: 90%;
        margin-bottom:60px;
    }
    
    /* Login modal specific styling - smaller width on desktop */
    #DLogin .v-modal-container {
        max-width: 400px;
        width: 90%;
        margin: 60px auto;
        display: block;
    }
    
    /* Login modal button alignment */
    #DLogin .modal-buttons {
        justify-content: flex-end;
        display: flex;
        gap: 10px;
    }
    
    #DLogin .v-modal-footer-btn {
        min-width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Ensure button is visible */
    #DLogin #loginSubmitBtn {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        position: relative !important;
        z-index: 1000 !important;
    }
    
    /* Debug styling to make sure everything is visible */
    #DLogin {
        z-index: 9999 !important;
    }
    
    #DLogin .v-modal-container {
        z-index: 10000 !important;
    }
    
    #DLogin .v-modal-footer {
        z-index: 10001 !important;
    }
    
    /* Mobile responsive adjustments for login modal */
    @media (max-width: 768px) {
        #DLogin .v-modal-container {
            max-width: 95vw;
            margin: 20px auto;
        }
        
        #DLogin .modal-buttons {
            justify-content: center;
        }
        
        #DLogin .v-modal-footer-btn {
            min-width: 120px;
            width: 100%;
        }
    }
    .v-modal-footer {
        padding: 12px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 0 0 10px 10px;
        flex-shrink: 0;
        display: block;
    }

    .modal-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        align-items: center;
    }

    /* Alert Modal Styles */
    .alert-modal {
        z-index: 10000; /* Higher than regular modals */
    }

    .alert-modal-container {
        margin-top: 80px!important;
        max-width: 70vw!important;
        width: 90%;
    }

    .alert-modal-header-content {
        text-align: center;
        width: 100%;
    }

    .alert-icon {
        color: var(--betmgm-gold);
        margin-right: 8px;
    }

    .alert-title {
        color: var(--betmgm-white);
        font-weight: 600;
    }

    .alert-modal-body {
        text-align: center;
        padding: 20px;
    }

    .alert-message {
        color: var(--betmgm-white);
        margin: 0;
        line-height: 1.5;
    }

    .alert-modal-buttons {
        justify-content: center;
    }

#divSportsList{
    padding-right: 10px;
}

/* Refresh Button Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-actions {
    display: flex;
    align-items: center;
}

.btn-refresh {
    background: linear-gradient(135deg, var(--betmgm-gold), var(--betmgm-orange));
    border: none;
    border-radius: 8px;
    padding: 4px 8px;
    color: var(--betmgm-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--betmgm-orange), var(--betmgm-gold));
}

.btn-refresh:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.btn-refresh i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-refresh:hover i {
    transform: rotate(180deg);
}

.btn-refresh.refreshing i {
    animation: spin 1s linear infinite;
}

.refresh-text {
    font-weight: 600;
}

/* Racebook Radio Group Styles */
.racebook-radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked {
    border-color: var(--betmgm-gold);
    background: var(--betmgm-gold);
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-option input[type="radio"]:hover {
    border-color: var(--betmgm-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.radio-option label {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.radio-option:hover label {
    color: var(--betmgm-gold);
}

/* Filters Flex Container */
.filters-flex-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Prop Sort Container Styles */
.prop-sort-container {
    display: none; /* Hidden by default */
}

.prop-sort-container.show {
    display: block; /* Show when .show class is added */
}

.prop-sort-dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0; /* Prevent shrinking */
}

.prop-sort-select {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--betmgm-gold);
    border-radius: 6px;
    padding: 6px 10px;
    color: var(--betmgm-darker);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.prop-sort-select:focus {
    outline: none;
    border-color: var(--betmgm-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.prop-sort-select:hover {
    border-color: var(--betmgm-gold);
}

.prop-search-container {
    position: relative;
    display: inline-block;
    flex-shrink: 0; /* Prevent shrinking */
}

.prop-search-input {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--betmgm-gold);
    border-radius: 6px;
    padding: 6px 10px;
    color: var(--betmgm-darker);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    min-width: 140px;
    width: 200px;
}

.prop-search-input:focus {
    outline: none;
    border-color: var(--betmgm-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.prop-search-input::placeholder {
    color: var(--betmgm-light-text);
}

#dActionSlipTypeDropdown{width:100%; position: relative;}
#dActionSlipTypeDropdown .filter-dropdown-btn{width:100%}
#dActionSlipTypeDropdown .filter-dropdown-btn .sActionSlipType{width:100%; text-align: center;  }
#dActionSlipTypeDropdown .filter-dropdown-menu{min-width:200px;}

#dRacebookActionSlipTypeDropdown{position: relative;}
#dRacebookActionSlipTypeDropdown .filter-dropdown-btn{width:100%}
#dRacebookActionSlipTypeDropdown .filter-dropdown-btn .sActionSlipTypeRB{width:100%; text-align: center;  }
#dRacebookActionSlipTypeDropdown .filter-dropdown-menu{min-width:200px;}

/* Dark theme styling for Action Slip Type Dropdown */
#dActionSlipTypeDropdown {
    color: var(--betmgm-white);
}

#dActionSlipTypeDropdown .filter-dropdown-btn {
    background:none;
    color: var(--betmgm-white);
    border: 1px solid var(--betmgm-gold);
}

#dActionSlipTypeDropdown .filter-dropdown-btn:hover {
    background-color: var(--betmgm-dark);
    border-color: var(--betmgm-gold);
}

#dActionSlipTypeDropdown .filter-dropdown-btn .sActionSlipType {
    color: var(--betmgm-gold);
}

#dActionSlipTypeDropdown .filter-dropdown-menu {
    background-color: var(--betmgm-gray);
    border: 1px solid var(--betmgm-gold);
    color: var(--betmgm-white);
}

/* Set default position for the dropdown list */
#drpActionSlipTypeList {
    position: absolute;
    z-index: 1001;
}

/* When dropdown is expanded, change to relative positioning */
#dActionSlipTypeDropdown.active #drpActionSlipTypeList {
    position: absolute;
    z-index: 1001;
    overflow: visible;
}

#dActionSlipTypeDropdown .filter-dropdown-item {
    background-color: var(--betmgm-gray);
    color: var(--betmgm-white);
}

#dActionSlipTypeDropdown .filter-dropdown-item.selected {
    color: var(--betmgm-gold);
}

#dActionSlipTypeDropdown .filter-dropdown-item:hover {
    background-color: var(--betmgm-dark);
    color: var(--betmgm-gold);
}

/* Dark theme styling for Racebook Action Slip Type Dropdown */
#dRacebookActionSlipTypeDropdown {
    color: var(--betmgm-white);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-btn {
    background:none;
    color: var(--betmgm-white);
    border: 1px solid var(--betmgm-gold);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-btn:hover {
    background-color: var(--betmgm-dark);
    border-color: var(--betmgm-gold);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-btn .sActionSlipTypeRB {
    color: var(--betmgm-gold);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-menu {
    background-color: var(--betmgm-gray);
    color: var(--betmgm-gold);
    border: 1px solid var(--betmgm-gold);
}

/* Set default position for the racebook dropdown list */
#drpRacebookActionSlipTypeList {
    position: absolute;
    z-index: 1001;
}

/* When dropdown is expanded, change to relative positioning */
#dRacebookActionSlipTypeDropdown.active #drpRacebookActionSlipTypeList {
    position: relative;
    z-index: 1001;
    overflow: visible;
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-item {
    background-color: var(--betmgm-gray);
    color: var(--betmgm-white);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-item.selected {
    color: var(--betmgm-gold);
}

#dRacebookActionSlipTypeDropdown .filter-dropdown-item:hover {
    background-color: var(--betmgm-dark);
    color: var(--betmgm-gold);
}

.divFreePlayID{
    padding-left: 8px;
}


   
    @media (min-width: 992px) {
        #DDeposit .v-modal-container{
            max-width: 40vw!important;
        }
    }

/* Modern Report Modal Styles */
.report-modal-container {
    max-width: 90vw;  
    
    display: flex;
    flex-direction: column;
    
}

.report-modal-header {
    background: linear-gradient(135deg, var(--betmgm-darker) 0%, var(--betmgm-gray) 100%);
    border-bottom: 1px solid var(--betmgm-light-gray);
    padding: 8px 12px;
}

.report-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.report-header-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--betmgm-gold) 0%, var(--betmgm-orange) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(255, 215, 0, 0.3);
}

.report-header-icon i {
    font-size: 12px;
    color: var(--betmgm-darker);
}

.report-header-text {
    flex: 1;
}

.report-header-text .v-modal-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.report-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--betmgm-text);
    opacity: 0.8;
}

.report-modal-body {
    padding: 15px;
    background-color: var(--betmgm-dark);
    flex: 1;
}

.report-content-wrapper {
    width: 100%;
}

.report-filters-section {
    margin-bottom: 15px;
}

.report-filter-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.report-filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.report-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.report-filter-control {
    width: 100%;
}

.report-date-input {
    width: 100%;
    padding: 8px 12px;
    background-color: #2a2a2a;
    border: 1px solid var(--betmgm-gold);
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.report-date-input:focus {
    outline: none;
    border-color: var(--betmgm-gold);
    background-color: #3a3a3a;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* HTML5 Date Input Styling */
.report-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8);
    cursor: pointer;
    padding: 2px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.report-date-input::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) brightness(1);
    background-color: rgba(255, 215, 0, 0.1);
}

.report-date-input::-webkit-datetime-edit {
    color: #ffffff;
}

.report-date-input::-webkit-datetime-edit-fields-wrapper {
    color: #ffffff;
}

.report-date-input::-webkit-datetime-edit-text {
    color: #ffffff;
}

.report-date-input::-webkit-datetime-edit-month-field,
.report-date-input::-webkit-datetime-edit-day-field,
.report-date-input::-webkit-datetime-edit-year-field {
    color: #ffffff;
}

.report-title-section {
    text-align: center;
    margin: 12px 0;
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 6px;
    border-left: 3px solid var(--betmgm-gold);
}

.report-period-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.report-table-container {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.report-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.report-table th {
    padding: 8px 10px;
    text-align: left;
    font-weight: 700;
    color: var(--betmgm-gold);
    border-bottom: 2px solid var(--betmgm-light-gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--betmgm-light-gray);
    color: #ffffff;
    vertical-align: top;
    font-size: 12px;
    font-weight: 500;
}

.report-table tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.report-table tbody tr:last-child td {
    border-bottom: none;
}

/* Special table rows */
.report-prev-week-row {
    background-color: rgba(135, 206, 235, 0.15) !important;
    border-left: 4px solid #87CEEB;
}

.report-prev-week-mobile {
    display: none;
    background-color: rgba(135, 206, 235, 0.15) !important;
    border-left: 4px solid #87CEEB;
}

.report-total-row {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%) !important;
    border-left: 4px solid var(--betmgm-gold);
    font-weight: 600;
}

.report-total-row td {
    color: var(--betmgm-gold);
    font-weight: 700;
}

/* Score table specific styles */
.score-table th,
.score-table td {
    text-align: center;
}

.score-table th:first-child,
.score-table td:first-child {
    text-align: left;
}

.score-table th:nth-child(2),
.score-table td:nth-child(2) {
    text-align: left;
}

/* Claim modal specific styles */
.claim-message-thread {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--betmgm-gray);
    border-radius: 8px;
    border: 1px solid var(--betmgm-light-gray);
}

.claim-input-section {
    padding: 0;
}

.claim-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    background-color: var(--betmgm-light-gray);
    border: 1px solid var(--betmgm-gray);
    border-radius: 8px;
    color: var(--betmgm-white);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
}

.claim-textarea:focus {
    outline: none;
    border-color: var(--betmgm-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.claim-textarea::placeholder {
    color: var(--betmgm-text);
    opacity: 0.6;
}

/* Button styles */
.v-modal-footer-btn.primary-btn {
    background: linear-gradient(135deg, var(--betmgm-gold) 0%, var(--betmgm-orange) 100%);
    color: var(--betmgm-darker);
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.v-modal-footer-btn.primary-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ff8c42 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.v-modal-footer-btn.secondary-btn {
    background-color: var(--betmgm-gray);
    color: var(--betmgm-white);
    border: 1px solid var(--betmgm-light-gray);
    font-weight: 500;
}

.v-modal-footer-btn.secondary-btn:hover {
    background-color: var(--betmgm-light-gray);
    border-color: var(--betmgm-gold);
    color: var(--betmgm-gold);
}

/* Responsive design */
@media (max-width: 991px) {
    .report-modal-container {
        max-width: 95vw;
        margin: 10px;
    }
    
    .report-modal-header {
        padding: 15px 20px;
    }
    
    .report-header-content {
        gap: 12px;
    }
    
    .report-header-icon {
        width: 40px;
        height: 40px;
    }
    
    .report-header-icon i {
        font-size: 16px;
    }
    
    .report-header-text .v-modal-title {
        font-size: 20px;
    }
    
    .report-modal-body {
        padding: 20px;
    }
    
    .report-filter-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .report-filter-item {
        min-width: auto;
    }
    
    .report-table {
        font-size: 12px;
    }
    
    .report-table th,
    .report-table td {
        padding: 8px 6px;
    }
    
    .report-prev-week-row {
        display: none;
    }
    
    .report-prev-week-mobile {
        display: table-row;
    }
    
    .report-modal-footer .modal-buttons {
        justify-content: center;
    }
    
    .v-modal-footer-btn {
        flex: 1;
        min-width: 120px;
    }
}

.v-modal-title .player-name{
    color: white;
}

 /* Captcha container styles */
 #captcha-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 10px;
}

#captcha-container .botWork {
    display: flex;
    align-items: center;
}

#captcha-container .CaptchaImg {
    max-width: 95%;
    height: auto;
}

#captcha-container .Captcha {
    margin-top: 8px;
    border: 1px solid var(--betmgm-gold) !important;
    border-radius: 8px;
}