 /* #fd4545 brand color */
 * {
     scrollbar-width: none !important;
 }

 /* Additional styles */
 ::-webkit-scrollbar {
     width: none;
     /* Adjust as needed */
 }

 ::-webkit-scrollbar-track {
     background-color: rgba(255, 0, 0, 0);
 }

 ::-webkit-scrollbar-thumb {
     background-color: rgba(0, 0, 255, 0);
 }

 body {
     touch-action: manipulation;
     touch-action: pan-x pan-y;
     background-repeat: no-repeat !important;
     height: 100vh !important;
     -webkit-user-select: none;
     /* Safari */
     -moz-user-select: none;
     /* Firefox */
     -ms-user-select: none;
     /* Internet Explorer/Edge */
     user-select: none;
     margin: auto !important;
     -ms-overflow-style: none !important;
     scrollbar-width: none;
 }

 /* Chrome, Safari, Edge, Opera */
 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 .bottom-bar {
     background-color: #0f0f0f;
     color: white;
 }

 .b-active {
     color: #fd4545 !important;
     border-bottom: 3px solid;
     border-radius: 2px;
 }

 .s-active {
     background-color: #fd454534;
     border-radius: 5px;
     color: #fd4545 !important;
 }

 .bottom-link {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     color: #313131;
     font-weight: 700;
     text-decoration: none;
 }

 .bottom-link i {
     font-size: 22px !important;
 }

 .bottom-link span {
     font-size: 12px !important;
 }

 .sidebar {
     background-color: #ffffff;
     height: 100vh;
     border-right: 0.1px solid #ffffff2b;
     width: 13%;
     z-index: 99999;
     position: sticky;
     top: 0vh;
 }

 .sidebar .nav-link {
     color: #3a3a3a;
     cursor: pointer;
 }

 .sidebar .nav-link:hover {
     background-color: #fd454534;
     border-radius: 5px;
     color: #fd4545;
 }

 /* TOP bar */
 .top-bar {
     background-color: #ffffffdb;
     border-bottom: 0.1px solid #ffffff2b;
     box-shadow: 0px 0px 16px 0px #00000047;
     position: fixed;
     top: 0;
     width: 100vw;
     backdrop-filter: blur(3px);
 }

 .search-input {
     border-top-left-radius: 100px;
     border-bottom-left-radius: 100px;
     background: transparent;
     border: 0.1px solid grey;

     &::placeholder {
         color: #b3b3b3;
     }
 }

 /* Remove outline and border while typing */
 .search-input:focus,
 .search-input:active {
     outline: 0.1px solid rgba(128, 128, 128, 0.527);
     border: 0.1px solid rgba(128, 128, 128, 0.527);
     box-shadow: none !important;
     /* Ensure no border on focus or active */
 }

 .search-btn {
     border-top-right-radius: 100px !important;
     border-bottom-right-radius: 100px !important;
     background: transparent;
     border: 0.1px solid grey;
     color: #b3b3b3;
 }

 .mic-btn {
     background: #fd4545;
     width: 40px;
     height: 40px;
     border-radius: 100px !important;
     border: 0;
     color: white;
     font-size: 22px;
 }

 /* Bottom bar */
 .bottom-bar {
     background-color: #ffffff;
     border-top: 0.1px solid #ffffff2b;
     box-shadow: 0px 0px 16px 0px #00000047;
     height: 8vh;
     position: fixed;
     bottom: 0;
     width: 100vw;
 }

 /* video card */
 .video-container {
     width: 87%;
     background-color: #f5f5f5;
     padding-top: 10vh !important;
     padding-bottom: 8vh !important;
     /* height: 100vh; */
 }

 .chan-art {
     width: 34px;
     height: 34px;
     border-radius: 100px;
     border: 1px solid white;
     cursor: pointer;
 }

 .chan-box {
     width: 10%;
     padding: 6px;
 }

 .vid-details {
     width: 90%;
     padding-left: 12px;
     padding-right: 12px;
 }

 .video-card {
     border-radius: 10px;
     margin-bottom: 15px;
     position: relative;
 }

 .vid-stamp {
     background-color: #00000091;
     width: fit-content;
     position: absolute;
     top: 55% !important;
     right: 9px;
     padding: 0px 7px 0px 7px;
     color: white;
     border-radius: 4px;
 }

 .vid-thumb {
     border-radius: 10px;
     margin-bottom: 15px;
     height: 24vh;
     width: 100%;
     cursor: pointer;
 }

 .video-tittle {
     color: rgb(26, 26, 26);
     font-family: "Roboto", "Arial", sans-serif;
     font-size: 1rem;
     line-height: 1.4rem;
     font-weight: 500;
     overflow: hidden;
     display: block;
     max-height: 4.4rem;
     -webkit-line-clamp: 2;
     display: box;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     text-overflow: ellipsis;
     white-space: normal;
     margin-bottom: 0px;
     cursor: pointer;
 }

 .chan-name {
     margin: 0;
     font-size: 12px;
     font-weight: 600;
 }

 .vid-stats {
     color: #5c5c5c;
     font-size: 14px;
 }

 /* player  */
 .player-box {
     width: 75%;
 }

 .more-vid-box {
     width: 25%;
 }

 .player-box video {
     width: 60vw;
     border-radius: 5px;
     max-height: 80vh;
     overflow: hidden;
 }


 .v-title {
     font-size: 18px;
     font-weight: 500;
     padding-left: 12px;
     padding-right: 12px;
 }

 .v-desc {
     background-color: #fd454529;
     border-radius: 5px;
     padding: 10px;
     margin-bottom: 10vh;
 }

 .v-desc a {
     color: #0f0f0f !important;
     text-decoration: none;
 }

 .v-desc p {
     border-top: 0.1px solid black;
     margin-top: 8px;
     padding-top: 13px;
 }

 .v-desc span {
     width: 100%;
 }

 .channel-box {
     width: 100%;
     margin-top: 12px;
     margin-bottom: 12px;
 }

 .chan-detail {
     padding-left: 16px;
     width: 20%;
     display: flex;
 }

 .chan-detail img {
     width: 45px;
     height: 45px;
     border-radius: 100px;
     border: 2px solid white;
     cursor: pointer;
     margin-right: 8px;
 }

 .connect {
     width: 10%;
     display: flex;
 }

 .connect button {
     background-color: #fd4545;
     width: -webkit-fill-available;
     border-radius: 100px;
     color: white;
     border: none;
     padding: 5px;
     font-size: large;
     margin-right: 5px;
 }

 .act-box {
     width: 65%;
     display: flex;
     align-items: center;
     justify-content: space-evenly;
 }

 .act-box button {
     background: #fd454536;
     border: 1px solid #fd4545;
     border-radius: 100px;
     padding: 3px 10px 3px 10px;
 }

 .act-box i {
     color: #fd4545;
     border-left: 0.1rem solid;
     padding-left: 5px;
 }

 .more-card {
     margin-top: 12px;
 }

 .more-thumb {
     width: 50%;
     min-height: 12vh;
     max-height: 12vh;
 }

 .more-thumb img {
     width: 100%;
     height: 11vh;
     border-radius: 10px;
     cursor: pointer;
     position: relative;
 }

 .more-thumb .stamp {
     background-color: #00000091;
     width: fit-content;
     position: relative;
     bottom: 24%;
     left: 70%;
     padding: 0px 7px 0px 7px;
     color: white;
     border-radius: 4px;
     font-size: 14px;
 }

 .more-detail {
     width: 50%;
 }


 .more-detail img {
     display: none;
 }

 .more-detail .chan-stats {
     font-size: 12px;
 }

 .more-detail h6 {
     color: rgb(26, 26, 26);
     font-family: "Roboto", "Arial", sans-serif;
     font-size: 1rem;
     line-height: 1.4rem;
     font-weight: 500;
     overflow: hidden;
     display: block;
     max-height: 4.4rem;
     -webkit-line-clamp: 2;
     display: box;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     text-overflow: ellipsis;
     white-space: normal;
     margin-bottom: 0px;
     cursor: pointer;
 }

 .more-detail p {
     margin: 0px;
     padding: 0px;
 }

 /************************************* mobile code ********************************************/
 @media (max-width: 768px) {
     .search-group {
         width: 100% !important;
     }

     .player-box {
         width: 100%;
     }

     .player-box video {
         width: 100vw;
         border-radius: 0px;
         max-height: 27vh;
         box-shadow: none;
         position: sticky;
         top: 7vh;
     }

     .more-vid-box {
         width: 100%;
         margin: auto;
         margin-bottom: 10vh;
     }

     .more-card {
         margin-top: 16px;
     }

     .more-thumb {
         width: 100%;
         min-height: 25vh;
         max-height: 25vh;
     }

     .more-thumb img {
         width: 100%;
         height: 100%;
         border-radius: 0px;
         position: relative;
     }

     .more-thumb .stamp {
         background-color: #00000091;
         width: fit-content;
         position: relative;
         bottom: 15%;
         left: 86%;
         padding: 0px 7px 0px 7px;
         color: white;
         border-radius: 4px;
         font-size: 16px;
     }

     .more-detail {
         width: 96%;
         margin: auto;
         margin-top: 2%;
     }

     .v-title {
         font-size: 18px;
         font-weight: 500;
         padding-left: 12px;
         padding-right: 12px;
         margin-top: -7px;
         padding-top: 7px;
     }

     .art-box {
         width: 12%;
         padding-right: 0px;
     }

     .art-box img {
         display: block;
         width: 100%;
         border-radius: 100%;
         position: relative;
     }

     .art-box .stamp {
         background-color: #00000091;
         width: fit-content;
         position: absolute;
         top: 55% !important;
         right: 9px;
         padding: 0px 7px 0px 7px;
         color: white;
         border-radius: 4px;
     }

     .more-desc-box {
         width: 88%;
     }

     .more-detail .chan-stats {
         font-size: 12px;
     }

     .v-desc {
         background-color: #fd454529;
         border-radius: 8px;
         padding: 10px;
         width: 95%;
         margin: auto;
         font-size: 14px;
     }


     .video-container {
         width: 100% !important;
         padding: 0px !important;
         background-color: #ffffff;
         padding-top: 7vh !important;
         padding-bottom: 8vh !important;
         /* height: 100vh; */
     }

     .video-container .row {
         padding: 0px !important;
     }

     .vid-thumb {
         border-radius: 0;
         margin-bottom: 10px;
         height: 24vh;
         width: 100%;
         cursor: pointer;
     }

     .chan-box {
         width: 10%;
         padding: 6px;
         padding-left: 12px;
     }

     .channel-box {
         width: 100%;
         margin-top: 12px;
         margin-bottom: 12px;
     }

     .chan-detail {
         padding-left: 16px;
         width: 60%;
         display: flex;
     }

     .chan-detail img {
         width: 45px;
         height: 45px;
         border-radius: 100px;
         border: 2px solid white;
         cursor: pointer;
         margin-right: 8px;
     }

     .connect {
         width: 35%;
         display: flex;
         align-content: center;
         align-items: center;
     }

     .connect button {
         background-color: #fd4545;
         width: -webkit-fill-available;
         border-radius: 100px;
         color: white;
         border: none;
         padding: 5px;
         font-size: large;
         margin-right: 5px;
     }

     .act-box {
         margin-top: 10px;
         border-top: 0.1px solid #3a3a3a;
         border-bottom: 0.1px solid #3a3a3a;
         width: 100%;
         display: flex;
         align-items: center;
         justify-content: space-evenly;
         padding: 6px;
     }
 }