
        body {
            background-color: #1a1a1a;
            color: #ffffff;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        .navbar {
            border-bottom: 2px solid #444;
        }

        .navbar-brand {
            font-weight: bold;
            color: #f39c12;
            font-size: 1.5rem;
            
        }

        .navbar-nav {
            display: flex;
            flex-wrap: nowrap; /* Prevent items from wrapping */
            overflow-x: auto; /* Enable horizontal scrolling */
            white-space: nowrap; /* Prevent breaking of long text */
            padding-bottom: 5px;
        }

        .nav-link {
            color: #ffffff;
            padding: 10px 15px;
            font-weight: 500;
            transition: color 0.3s, background-color 0.3s;
        }

        .nav-link:hover {
            color: #f39c12;
            background-color: #333333;
            border-radius: 5px;
        }

        .navbar-toggler {
            border: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            display: inline-block;
            width: 25px;
            height: 2px;
            background-color: #f39c12;
            position: relative;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            display: inline-block;
            width: 25px;
            height: 2px;
            background-color: #f39c12;
            position: absolute;
            left: 0;
            transition: transform 0.3s;
        }

        .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler-icon::after {
            top: 8px;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: rotate(45deg) translateY(8px);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* Custom scrollbar for horizontal nav */
        .navbar-nav::-webkit-scrollbar {
            height: 5px;
        }

        .navbar-nav::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 10px;
        }

        .navbar-nav::-webkit-scrollbar-track {
            background: #222;
        }
        
        div#navbarNav {
              font-size: 17px;
             width: 300px;
        }
        
        
      
    /* Card Link Styling */
.card-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color for text */
    display: block; /* Make the entire card clickable */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlight Effect on Hover */
.card-link:hover .card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #444;
}

/* Existing Card Styling */
.card {
    background: #2a2a2a;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}


.card-body {
    flex: 1 1 auto;
    padding: 8px;
    color: var(--bs-card-color);
}


/* Title Styling */
.tittle {
    font-size: 0.95rem;
    font-weight: bold;
   margin-right: 10px;
    text-transform: capitalize;
    display: inline-block;
    flex-shrink: 0;
    width: 100%;
}

/* Game Name Styling */
.card-body span:nth-of-type(2) {
    font-size: 0.80rem;
    font-weight: 500;
    color: #f39c12;
    flex-grow: 1;
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* Time Styling */
.time {
    font-weight: bold;
    font-size:0.75rem;
    float: right;
    flex-shrink: 0;
    color: #6c757d;
}

.started {
     color: #28a745;
     float: right;
     font-weight: bold;
    font-size:0.75rem;
    flex-shrink: 0;
    
     
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .tittle , .time, .started{
        width: 100%;
        margin-bottom: 2px;
        text-align: left;
    }
    .card-body span:nth-of-type(2) {
        width: 100%;
        margin-left: 0;
        text-align: left;
        white-space: normal;
    }
}

      
      
      
      
      
      
      
      
      
      
      
        /* Sidebar Container Styling */
.channel-list {
    background-color: #1a1a1a; /* Dark background for sidebar */
    border-radius: 10px; /* Rounded edges for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding: 15px;
}

/* Individual List Group Item Styling */
.channel-list .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2a2a2a; /* Slightly lighter background for items */
    border: none;
    padding: 10px;
   transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 8px; /* Subtle rounding for items */
    margin-bottom: 8px; /* Space between items */
   
}

.channel-list .list-group-item2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2a2a2a; /* Slightly lighter background for items */
    border: none;
    padding: 3px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 8px; /* Subtle rounding for items */
    margin-bottom: 8px; /* Space between items */
   
}

/* Remove border for the last item */
.channel-list .list-group-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Hover Effects for Items */
.channel-list .list-group-item:hover {
    background-color: #444; /* Highlight effect on hover */
    transform: translateY(-2px); /* Subtle lifting effect */
    text-decoration: none;
}

/* Channel Name Styling */
.channel-list .channel-name {
    font-size: 1rem;
    font-weight: bold;
    
    margin-left: 10px;
}

/* Link Styling */
.channel-list .watch-link {
    color: #f39c12; /* Bright color for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.channel-list.watch-link:hover {
    color: #fff;
    text-decoration: underline; 
}
/* Optional Thumbnail Images */
.channel-list .list-group-item img {
    width: 40px; /* Adjust size of images */
    height: 40px;
    margin-right: 10px;
    border-radius: 50%; /* Circular images */
    border: 2px solid #f39c12; /* Border to highlight thumbnails */
}

/* Title Styling */
.channel-list h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f39c12; /* Accent color for the title */
    margin-bottom: 15px;
    margin-top: 15px;
    text-transform: uppercase; /* Uppercase for emphasis */
    border-bottom: 1px solid #f39c12; /* Divider between items */
    padding-bottom: 5px;
}
a.list-group-item {
    color: #f39c12;
   
    font-weight: bold;
}

a.list-group-item:hover {
     color: #fff;
}








/* Stream Container Styling */
.stream-container {
    position: relative;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    background-color: #000;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stream-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Stream Buttons */
.stream-buttons {
    display: flex;
    justify-content: space-between;
}

.stream-btn {
    flex: 1;
    margin-right: 10px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
    padding: 3px;
}

.stream-btn:last-child {
    margin-right: 0;
}

.stream-btn:hover {
    background-color: #e67e22;
}


#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #008CBA; /* Button color */
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    float: right;
}

#scrollToTopBtn:hover {
    background-color: #005f75; /* Darker blue on hover */
}



/* CSS to center the title and style it */
.title-container {
    text-align: center;
    margin-top: 20px;
}

.title-container h1 {
    font-size: 36px; /* Adjust font size */
    color: #4a99a1; /* Change the text color */
    font-family: 'Arial', sans-serif; /* Change the font style */
    font-weight: bold; /* Make the text bold */
    text-transform: uppercase; /* Uppercase text */
    margin: 0; /* Remove default margin */
    padding: 10px; /* Add padding */
}


.twitch-chat {
        border: 2px solid #6441a5;
        border-radius: 8px;
        overflow: hidden;
        max-width: 300px;
    }
   
   
   
   .date-selector {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
    }

    .date-button {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f8f9fa;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-align: center;
    }

    .date-button.selected {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    .date-label {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .date-day {
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .date-number {
        font-size: 18px;
        font-weight: bold;
    }

    .date-month {
        font-size: 12px;
        text-transform: uppercase;
        color: #6c757d;
    }
   
   
   .no-stream-message {
        text-align: center;
        margin: 20px auto;
        padding: 15px;
        border: 2px solid #f44336;
        border-radius: 5px;
        background-color: #ffe6e6;
        color: #d32f2f;
        font-family: Arial, sans-serif;
        max-width: 400px;
    }
    .no-stream-message h5 {
        font-size: 16px;
        margin: 0;
    }
    
    
 /* General Ticker Styles */
    .ticker-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        background-color: #2a2a2a;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        margin-bottom: 10px;
    }

    .ticker-nav {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        background-color: #444;
        color: #fff;
    }

    .ticker-nav:hover {
        background-color: #666;
        color: #ff0000;
    }

    .ticker-wrap {
        overflow: hidden;
        white-space: nowrap;
        display: flex;
        align-items: center;
        position: relative;
        flex-grow: 1;
        margin: 0 10px;
    }

    .ticker {
        display: flex;
        gap: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .box {
        width: 260px;
        padding: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .game-box {
        color: #fff;
        padding: 15px;
        border: 1px solid #444;
        border-radius: 15px;
        background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
        transition: background 0.3s ease;
    }

    .game-box:hover {
        background: linear-gradient(145deg, #333, #242424);
    }

    .game-statut {
        font-size: 0.75rem;
        color: #6c757d;
        font-weight: bold;
    }

    .game-live {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ff0000;
    }

    .score-opp,
    .score-at,
    .game-prog {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        float: right;
    }

    .game-prog {
        color: #ff0000;
    }

    .game-opp,
    .game-at {
        width: 100%;
        font-size: 0.9rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .game-date {
        font-size: 0.75rem;
        color: #28a745;
        font-weight: bold;
    }

    /* Scrollbar Styling */
    .ticker-wrap::-webkit-scrollbar {
        height: 8px;
    }

    .ticker-wrap::-webkit-scrollbar-track {
        background: #444;
        border-radius: 10px;
    }

    .ticker-wrap::-webkit-scrollbar-thumb {
        background: #666;
        border-radius: 10px;
    }

    .ticker-wrap::-webkit-scrollbar-thumb:hover {
        background: #888;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .ticker-container {
            padding: 5px;
        }

        .ticker-nav {
            width: 30px;
            height: 30px;
            font-size: 1.2rem;
        }

        .box {
            width: 220px;
        }

        .game-box {
            padding: 10px;
        }

        .game-opp,
        .game-at {
            font-size: 0.8rem;
        }
    }