* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

.header {
position:fixed;
top:0;
left:0;
width:100%;
padding: 8px 50px;
background: #ffff;
display: flex;
justify-content:space-between;
align-items: center;
z-index: 100;
border-bottom: 1px solid #ccc; 
padding-bottom: 8px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.search-bar {
    display: flex;
    margin-left: 200px;
  }
  
  .search-input {
    outline: none;
    background-color: rgb(235, 235, 235);
    border: none;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 3rem;
    width:28rem;
    text-indent: 20px;
    font-size: 18px;
  }
  
  .search-btn {
    position:relative;
    background-color: rgb(235, 235, 235);
    border: 1px solid rgb(200, 200, 200);
    border-left: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 3rem;
    height: 3rem;
    border: none;
    justify-content: center;
  }
  
  .search-btn:hover {
    background-color: rgb(220, 220, 220);
    cursor: pointer;
  }
  
  .search-btn::before {
    content: "";
    height: 70%;
    width: 1px;
    position: absolute;
    right: 100%;
    top: 15%;
    background-color: rgb(200, 200, 200);
  }
  
  .search-btn > i {
    color: rgb(180, 180, 180);
  }


.unggah-box {
    border: 1px solid #ccc; 
    padding: 3px 15px;
    margin-right: 40px;
    display: flex;
    justify-content:right;
    align-items: center;
}

.unggah-box i{
    width:0px;
}

.unggah-box a {
    text-decoration: none;
    color: #000;
    font-family: 'Segoe UI', Tahoma,  Verdana, sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.unggah-box:hover {
    background-color: #ececec;
    cursor: pointer;
  }

.navbar i {
    margin-right: 40px;
    transition: box-shadow 0.2s ease; /* Menambahkan efek transisi untuk perubahan bayangan */
    position: relative;
    margin-top: 5px;
}

.navbar i:hover {
    background-color: #ececec; /* Mengatur padding secara singkat */
    border-radius: 100%;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer; 
}

.tiktok-menu li {
  border: none;
  font-size: 16pt;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-left: 5px;
  display: block;
  width: 100%;
  padding: 0px 20px;
  display:flex;
  align-items: center;
  text-transform: capitalize;
  color: #242424;
}

.tiktok-menu li i {
    width: 35px;
}

.tiktok-menu li a {
    text-decoration: none;
    color: #000;
    padding: 10px 10px;
}


.tiktok-menu li:hover {
    background: rgba(0, 0, 0, 0.1);
}

.icons {
    margin-left: 10px;
}

.icons i {
    margin-right: 10px;
}

.filters{
  position: fixed;
  left: 260px;
  top: 70px;
  width: calc(100% - 250px);
  height: 110px;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  z-index: 100%;
}

.filters::-webkit-scrollbar{
  display: none;
}

.filter-options{
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  background: #f0f0f0;
  border: 1px solid #dbdbdb;
  text-transform: capitalize;
  margin-right: 10px;
  color: #242424;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  font-weight: bold;
  font-family: 'Lucida Sans',sans-serif;
}

.filter-options.active{
  color: #fff;
  background: #242424;
}

.filter-options:hover {
  background-color: #d3d3d3;
  cursor: pointer;
}

.filter-options.active:hover{
  color: #000;
}

.video-container{
  background-color: #ffffff;
  width: 100%;
  padding: 15px 10px;
  padding-top: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.video{
  width:310px;
  margin-right:10px;
  margin-bottom: 30px;
  
}

.video-thumbnail{
  width:100%;
  height:420px;
}

.video-thumbnail img{
  object-fit: cover;
  height: 100%;
  width:100%;
  border-radius: 10px;
}


.video-detail{
  display:flex;
  margin-top: 10px;
}

.caption{
  font-size: 20px;
}

.title {
  display: flex;
  align-items: center;
  justify-content:space-between; /* Align to the right */
  width: 310px; 
  font-size: 20px;
}

.title i span{
  font-size: 19px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.title i {
  margin-left: 10px; /* Add some space between the h3 and the icon */
  color: rgb(96, 96, 96);
  
  text-decoration: none;
  
}
