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


.profil-container{
  background-color: #ffffff;
  width: 100%;
  padding: 15px 10px;
  padding-top: 60px;
  display: flex;
  align-items: left;
  margin: auto;
  flex-direction: column;
}

.profil{
  width:400px;
  margin-right:10px;
  margin-bottom: 10px;
  display:flex;
}

.author {
    margin-top: -40px; /* Menggeser elemen "author" ke atas sebanyak 5 piksel */
  }

.title {
  align-items: center;
  justify-content:left;
  font-size: 20px;
  width: fit-content;
  margin-top: -40px;
}

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

.edit-box i{
    margin-right:8px;
    margin-left: 0px;
}

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

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

.edit-box {
    border: 1px solid #ccc; 
    padding: 3px 10px;
    width:fit-content;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-top: 20px;
    justify-content: center;
}

.caption{
    display:flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 280px;
    font-size: 18px;
    color: rgb(96, 96, 96);
    margin-bottom: 10px;
}

.tombol i{
    margin-right:8px;
    margin-left: 0px;
}


.tombol:hover {
    border-bottom: 3px solid black;
    cursor: pointer;
}

.tombol { 
    padding: 8px 20px;
    width:fit-content;
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.tombol a {
    text-decoration: none;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-right: 10px; /* Memberikan margin antara tombol */
}

.tombol-container {
    display: flex;
}

.upload-container {
    text-align: center; /* Rata tengah */
    margin-top: 110px; /* Jarak antara profil-container dan upload-container */
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-content i {
    margin-bottom: 5px;
    font-size: 90px; /* Jarak antara ikon dan teks */
}
