.box {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    color: white;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .box .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
  }
  .box-title {
    margin-top: 0px;
    font-weight: bold;
  }
  .box-info {
    font-size: 14px;
    color: #ddd;
  }
  a {
    text-decoration: none;
  }
  #player {
      width: 640px;
      height: 360px;
      margin-bottom: 10px;
      position: relative;
      background: #000; /* Background color to make it look empty */
  }
  #nextVideo {
      display: block;
  }
  .border-bottom {
    border-bottom: 1px solid #ededed;
  }

  .border-right {
    border-right: 1px solid #ededed;
  }  

  .border-left {
    border-left: 1px solid #ededed;
  }  

  .select2-container .select2-selection--single {
      height: calc(1.5em + 0.75rem + 2px); /* Sesuaikan ukuran dengan form-control */
      padding: 0.375rem 0.75rem; /* Padding seperti form-control Bootstrap */
      font-size: 1rem; /* Ukuran font */
      line-height: 1.5; /* Line height */
      border: 1px solid #ced4da; /* Border seperti form-control */
      border-radius: 0.25rem; /* Border radius seperti form-control */
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
      height: 100%; /* Pastikan panah di sebelah kanan sejajar dengan text */
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
      padding-left: 0; /* Hapus padding default Select2 agar lebih rapat */
  }

  .custom-checkbox {
    -webkit-appearance: none; /* Menghilangkan gaya default */
    appearance: none;
    width: 20px; /* Ukuran lebar checkbox */
    height: 20px; /* Ukuran tinggi checkbox */
    border: 2px solid #999; /* Warna dan ketebalan border */
    border-radius: 3px; /* Sudut melengkung */
    cursor: pointer; /* Kursor berubah saat hover */
    position: relative;
  }

  .custom-checkbox:checked {
    background-color: #3aba67; /* Warna latar belakang saat terpilih */
    border: 2px solid #3aba67;
  }

  .custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 16px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transform-origin: center;
    margin-top: -10px;
    margin-left: -4px;
  }

  #preview {
    display: none;
    width: 100%;
    box-shadow: 0 0 10px #d0d0d0;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
  .img-upload {
    max-width: 100%;
    max-height: 100%;
  }