.sidebar {
    /* width: 150px; */
    margin-right: 10px;
    /* min-height: 100vh; */
    /* padding: 1rem; */
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    /* margin-bottom: 0.5rem; */
}
.nav-link.active {
    color: #ff4d4d;
}

/* Sidebar nav link active state */
.sidebar .nav-link.active {
    background-color: #e9e9e9; /* Darker shade */
    border-radius: 4px; /* Slightly rounded edges (optional) */
    font-weight: bold;
}

/* Hover effect for non-active links */
.sidebar .nav-link:hover {
    background-color: #e9e9e9; /* Slightly lighter than active */
    border-radius: 4px; /* Slightly rounded edges (optional) */
    font-weight: bold;
}

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #000000;
    display: inline-block;
    position: absolute;
    /* left: 29px; */
    left: 9px;
    width: 1px;
    height: 100%;
    /* z-index: 400; */
}
ul.timeline > li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    /* margin: 20px 0; */
    /* padding-left: 50px; */
}

ul.timeline > li:before {
    content: '';
    position: absolute;
    left: 9px; /* same as line */
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #fff; /* outer circle fill */
    border: 2px solid #000;
    border-radius: 50%;
}

/* inner dot */
ul.timeline > li:after {
    content: '';
    position: absolute;
    left: 9px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    top: 4px; /* adjust to center inside outer circle */
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* change to 3 if needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* style for left and right side ads start */
.top-banner-container {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Side ads - fixed */
/* .side-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 600px;
    z-index: 9999;
    text-align: center;
} */

/* Left & Right positions */
/* .side-ad.left  { left: 10px; }
.side-ad.right { right: 10px; } */

/* Main content spacing so ads don't overlap */
/* .content-wrapper,
.main-footer,
.main-header {
    margin-left: 160px !important;   125px ad + space
    margin-right: 160px !important;  125px ad + space
} */

/* Hide ads + reset content on smaller screens */
/* @media (max-width: 1400px) {
    .side-ad { display: none; }

    .content-wrapper,
    .main-footer,
    .main-header {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
} */
/* style for left and right side ads end */

/* Gradient overlay */
.video-card {
    background: #000000;
    min-height: 500px;
}

.video-url {
    min-height: 500px;
}

.video-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

/* Play button */
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: rgba(0,0,0,0.4);
}

/* Optional hover effect */
.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    transition: 0.3s;
}

.video-gradient, .play-btn {
    pointer-events: none;
}

/* only for video viewer */
.reel-box {
    max-width: 360px;
    width: 100%;
    height: 650px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.swiper,
video {
    width: 100%;
    height: 100%;
}

video {
    object-fit: cover;
}

.back-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 999;
}

.side-controls {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.action-btn,
.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover,
.action-btn:hover {
    background: rgba(0,0,0,.8);
}

.reel-title {
    /* max-width: 360px; */
    padding: 0 20px;
}
/* only for video viewer end*/

.live-badge {
    border-radius: 5px;
    overflow: hidden;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
}

/* -------------------------- */

/* LEFT RED SECTION (dot + LIVE) */
.live-left {
    background-color: var(--primary);
    padding: 5px 10px;
    line-height: 25px;
    animation: liveBlink 1s infinite;
}

/* BLACK DOT */
.live-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 6px;
}

/* LIVE TEXT */
.live-text {
    color: var(--white-color);
}

/* RIGHT BLACK SECTION */
.updates-text {
    background-color: #000;
    color: var(--white-color);
    padding: 5px 10px;
    line-height: 25px;
}

/* remove link default color */
.live-badge:link,
.live-badge:visited {
    color: inherit;
}

/* ðŸ”¥ Blink Animation */
@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
