/* General styling */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      transition: background-color 0.3s ease; /* Efek transisi untuk perubahan mode tema */
     margin-bottom: 50px;
      padding-bottom: 50px; /* Sesuaikan dengan tinggi footer */
    }

    /* Gaya untuk mode tema terang */
    body.light-mode {
      background-color: #fff;
      color: #333;
    }

    /* Gaya untuk mode tema gelap */
    body.dark-mode {
      background-color: #333;
      color: #fff;
    }

    header {
      background-color: #333;
      color: #fff;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

.info-banner {
      background-color: #4CAF50;
      color: white;
      padding: 10px;
      text-align: center;
      font-size: 12px;
    }

    .logo {
      font-size: 1.5rem;
    }

    nav {
      display: flex;
      align-items: center;
    }

    .menu-icon {
      font-size: 1.5rem;
      cursor: pointer;
      color: #fff; /* Ganti warna ikon sesuai kebutuhan */
    }

    /* Movie container and individual movie styling */
    .movie-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 20px;
    }

    .movie {
      background-color: #eee;
      padding: 5px;
      text-align: center;
      margin: 5px;
      max-width: 300px;
    }

    .movie img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
    }
    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #333;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-size: 12px;
    }

   /* ... (kode lainnya) */

/* Styling for Mobile View (2 columns) */
@media (max-width: 767px) {
  .movie-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .movie {
    max-width: calc(50% - 10px);
    box-sizing: border-box;
  }

  .nav-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100%;
    max-width: 70vw;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    transition: right 0.3s ease;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-list li {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #555;
    color: #333;
    text-decoration: none;
  }

  .nav-list li a {
    text-decoration: none;
    color: #333;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .close-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }

  .video-container iframe {
    max-width: 100%; /* Sesuaikan lebar maksimal sesuai kebutuhan */
    width: 100%;
    height: 220px; /* Sesuaikan tinggi iframe sesuai kebutuhan */
  }
}

/* ... (kode lainnya) */

/* Styling for Desktop View (5 columns) */
@media (min-width: 768px) {
  .movie-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
  }

  .movie {
    max-width: 100%;
  }

  .nav-list {
    list-style-type: none;
    display: flex;
    align-items: center;
  }

  .nav-list ul {
    display: flex;
  }

  .nav-list li {
    margin-right: 20px;
  }

  .nav-list a {
    text-decoration: none;
    color: #fff;
  }

  .menu-icon {
    display: none;
  }

  .close-icon {
    display: none;
  }

  /* Sesuaikan ukuran iframe untuk mode desktop */
  .video-container iframe {
    width: 100%;
    height: 550px; /* Sesuaikan tinggi iframe sesuai kebutuhan */
  }

.poster-container {
  margin: 20px auto 50px; /* Tambahkan jarak di bawah poster */
 }
}


/* ... (kode lainnya) */

.playlist-container {
  max-width: 800px;
  margin: 20px auto;
  max-height: 300px; /* Sesuaikan tinggi maksimum sesuai kebutuhan */
  overflow-y: auto;
}

/* ... (kode lainnya) */

.table-container {
  overflow-x: auto;
  margin: auto; /* Tambahkan properti ini */
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

thead th, tbody td {
  padding: 10px;
  text-align: center; /* Tambahkan properti ini untuk sel-sel di dalam tabel */
  border-bottom: 1px solid #ddd;
  background-color: #333;
  color: #fff;
}

thead th {
  background-color: #000;
}

/* ... (kode lainnya) */

tbody td a {
  text-decoration: none; /* Menghapus dekorasi tautan */
  color: #fff; /* Warna teks sesuai kebutuhan */
  display: block; /* Membuat tautan menempati seluruh lebar sel */
  padding: 10px; /* Menambahkan padding untuk menyesuaikan tata letak */
}

.poster-container {
  margin: 20px auto; /* Tengahkan poster-container */
}

.poster-container img {
  width: 300px; /* Atur lebar sesuai kebutuhan */
  height: 450px; /* Atur tinggi sesuai kebutuhan */
  object-fit: cover; /* Untuk menjaga rasio aspek jika gambar tidak sesuai dengan dimensi yang ditentukan */
  display: block;
  margin: 0 auto;
}

/* Membuat seleksi warna link menjadi transparan */
tr a,
td a {
  color: inherit;
  text-decoration: none;
}

/* Menonaktifkan gaya seleksi default pada link */
tr a,
td a {
  -webkit-tap-highlight-color: transparent;
}

/* Mengubah warna teks menjadi merah saat link diklik */
tr a:active,
td a:active {
  color: red;
}

a {
  color: red;
}

.movie-details p {
  font-size: 12px;
}

  #HCB_comment_box {
  margin-top: 20px;
  padding: 20px;
  color: #fff;
  border: 1px solid #ddd;
  background-color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#HCB_comment_box a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

#HCB_comment_box a:hover {
  text-decoration: underline;
}

#HCB_comment_box p {
  color: #fff;
  line-height: 1.6;
}

#HCB_comment_box input[type="text"],
#HCB_comment_box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

#HCB_comment_box input[type="submit"] {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#HCB_comment_box input[type="submit"]:hover {
  background-color: #0056b3;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px); /* Menempatkan dropdown di bawah tombol */
    left: 50%; /* Pusat horizontal */
    transform: translateX(-50%); /* Pusat horizontal */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: center;
}

.dropdown:hover .dropdown-content {
    display: block;
}
  

    #serverDropdown {
      margin-top: 10px;
      font-size: 12px; /* Adjust the font size as needed */
      height: 20px; /* Adjust the height as needed */
      width: 150px;
    }

    
