* {
    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;
}

.video-container{
  background-color: #ffffff;
  width: 80%;
  padding: 15px 10px;
  padding-top: 5px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin: auto;
}

.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;
}

