/* ==================== ESTILOS GENERALES ==================== */
body, main, footer, * { 
    font-family: 'Roboto', sans-serif !important;
}

.best-usa-sportsbook { 
    background:#01793C; 
}

.breadcrumbs { 
    color:#4a90e2;
    font-size:0.8em;
    text-decoration:none;
    text-transform: uppercase;
}

.nav-item { 
    text-transform: uppercase; 
}

/* ==================== SIDEBAR MENU ==================== */
#sidebar {
    background-color: #1b1c1d;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#sidebar::-webkit-scrollbar { display: none; }

#sidebar-content-container {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sidebar-panel {
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: 1;
}
.sidebar-panel.active {
    transform: translateX(0);
    z-index: 2;
}
.sidebar-panel.sliding-out { transform: translateX(-100%); }

.sidebar-menu {
    flex-grow: 1;
    overflow-y: auto;
}
.sidebar-menu a,
.sidebar-menu .submenu-trigger {
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    justify-content: space-between;
    padding: 1rem;
    text-transform: none;
}
.sidebar-menu a:hover,
.sidebar-menu .submenu-trigger:hover {
    background-color: #f9fafb;
}
.sidebar-menu a.sport-category {
    background-color: #1b1c1d; /* bg-gray-800 */
    color: white;
}
.sidebar-menu a.sport-category:hover {
    background-color: #1b1c1d; /* bg-gray-700 */
}

.sidebar-header {
    background-color: #1b1c1d;
    border-bottom: 1px solid #e5e7eb;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 1rem;
}

.sidebar-back-button {
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 1rem;
}
.sidebar-back-button:hover { background-color: #f9fafb; }

/* ==================== SWIPE CONTAINER ==================== */
.swipe-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.swipe-container::-webkit-scrollbar { display: none; }

/* ==================== VIDEO POP-UP ==================== */
#video-popup {
    background-color: #000;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    height: 250px;  /* New height */
    overflow: hidden;
    position: fixed;
    right: -250px;  /* Initially off-screen */
    top: 200px;
    transition: right 0.2s ease-in-out; /* faster animation */
    width: 250px;   /* New width */
    z-index: 1000;
}
#video-popup video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

#video-play-button {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 60px;  /* Adjusted size */
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s;
    width: 60px;   /* Adjusted size */
    z-index: 10;
}
#video-play-button:hover { background-color: rgba(0, 0, 0, 0.7); }
#video-play-button svg {
    color: white;
    height: 30px;   /* Adjusted size */
    margin-left: 4px; /* offset for visual centering */
    width: 30px;    /* Adjusted size */
}

#video-close-button {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: background-color 0.2s;
    width: 30px;
    z-index: 20;
}
#video-close-button:hover { background-color: rgba(0, 0, 0, 0.7); }
#video-close-button svg {
    color: white;
    height: 20px;
    width: 20px;
}
