
/* Mengatur styling untuk judul dan sinopsis */
#Judul h1 {
  font-size: 24px;
  color: #000;
  margin-top: 50px;
  text-align: center;
}

#Judul p[itemprop="description"] {
  font-size: 14px;
  color: #333;
  padding-top: 5px;
}

#Judul h2 {
  font-size: 18px;
  color: #555;
  margin-top: 20px;
}

#Judul .desc {
  font-size: 14px;
  color: #666;
}

/* Mengatur styling untuk tabel informasi */
#Informasi {
  display: flex;
  margin-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
}

#Informasi .ims {
  margin-right: 20px;
}

#Informasi img {
  max-width: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.inftable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  background-color: #ffffff;
}

.inftable td {
  border: 1px solid #ddd;
  padding: 8px;
  /* box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);  */
  font-size: 12px;
  text-align: center;
}

.inftable tr:nth-child(even) {
  background-color: #f9f9f9;
}

.inftable tr:hover {
  background-color: #f1f1f1;
}

.inftable td:first-child {
  font-weight: bold;
  color: #666166;
  width: 35%;
}

.inftable td:nth-child(2) {
  width: 65%;
}

.tabelbeda {
background-color: #f0f2f5;
}

/* Media Query for Mobile Layout */
@media (max-width: 768px) {
  #Informasi {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #Informasi .ims {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .inftable {
    font-size: 14px; /* Adjust the font size for mobile */
  }

  .inftable td {
    padding: 5px; /* Adjust padding for mobile */
  }

  .inftable td:first-child {
    width: 35%; /* Adjust width to maintain layout */
  }

  .inftable td:nth-child(2) {
    width: 65%; /* Adjust width to maintain layout */
  }
}

/* Mengatur styling untuk menu tab */
.mnu {
  width: 100%;       /* Membuat lebar menu 100% */
  display: flex;
  justify-content: space-between;  /* Membagi ruang antar tab secara merata */
  margin-top: 20px;
  border-top: 1px solid #ddd;  /* Opsional: Menambahkan border atas */
  background-color: #f1f1f1;  /* Opsional: Memberi background warna */
  /* border-bottom-right-radius: 5px; */
  border-radius: 10px 0px;
}

.mnu .tab {
  flex: 1;            /* Membuat setiap tab mengambil ruang yang sama */
  text-align: center; /* Mengatur teks di tengah */
  background-color: #f1f1f1;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: background-color 0.3s;
  font-size: 16px;
  border-radius: 10px 0px;
}

.mnu .tab:hover {
  background-color: #ddd;
}

/* .mnu .tab.def {
  background-color: #1a73e8;
  color: white;
} */

.mnu .tab.curr {
  background-color: #090e14;
  color: white;
}

/* Mengatur styling untuk konten tab */
.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: none;
}

.tab-content h3 {
  font-size: 18px;
  margin-top: 0;
}

.tab-content p {
  font-size: 14px;
}

.tengah {
  max-width: 800px;  /* Atur lebar maksimal sesuai kebutuhan */
  margin: 0 auto;    /* Memusatkan kontainer secara horizontal */
  padding: 20px;     /* Memberi padding di sekitar kontainer */
  background-color: #fff;   
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
  border-radius: 8px;  /* Opsional: Memberi radius pada sudut */
}


/* button sign in */
.sign-in-button {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 12px;
  color: #000; /* Warna teks */
  text-decoration: none;
  border: 1px solid black; /* Warna border */
  border-radius: 5px; /* Membuat bentuk rounded */
  /* background-color: transparent; */
  transition: background-color 0.3s, color 0.3s;
  /* margin-top: 10px; */
  margin-right: 5px;
}

.sign-in-button .icon {
  margin-right: 8px;
  font-size: 12px; /* Ukuran ikon */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-in-button:hover {
  background-color: #000;
  color: #fff; /* Warna teks saat hover */
  /* border-color: rgba(255, 255, 255, 0.3); Warna border saat hover */
}

@media (max-width: 450px) {
  .sign-in-button {
    margin-right: 15px;
  }
}

.notification-actions {
  margin-left: 40px;
  gap: 5px;
}