/*
  * ======================================
  * GLOBAL TABLE STYLES
  * ======================================
  */
  
  /* Atur word-break agar konten dalam sel tabel dapat memecah baris dengan benar */
  td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto; /* Memungkinkan pemecahan kata pada tanda hubung */
  }
  
  /*
  * ======================================
  * .tblkecil CLASS
  * (Tabel dengan font kecil dan padding minimal)
  * ======================================
  */
  
  .tblkecil {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px; /* Ukuran font standar untuk desktop */
  }
  
  /* Gaya untuk header dan sel tabel */
  .tblkecil th,
  .tblkecil td {
    border: 1px solid #ccc; /* Tambah border */
    padding: 2px 4px !important; /* Kurangi padding */
  }
  
  .tblkecil th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
  }
  
  .tblkecil td {
    vertical-align: top; /* Atur konten sel ke bagian atas */
  }
  
  /* Atur margin untuk tabel yang menggunakan class ini */
  figure.wp-block-table.tblkecil {
    margin-bottom: 4px !important;
    padding-bottom: 0 !important;
  }
  
  figure.wp-block-table.tblkecil + blockquote,
  figure.tblkecil + * {
    margin-top: 4px !important;
    padding-top: 0 !important;
  }
  
  /*
  * ======================================
  * STACKED TABLE ON MOBILE
  * (Tabel yang berubah menjadi tumpukan di layar kecil)
  * ======================================
  */
  
  @media (max-width: 768px) {
    table.stacked {
      border: 1px solid #ccc;
    }
  
    /* Sembunyikan header tabel */
    table.stacked thead {
      display: none;
    }
  
    /* Atur tampilan untuk baris dan sel tabel */
    table.stacked,
    table.stacked tbody,
    table.stacked tr,
    table.stacked td {
      display: block;
      width: 100%;
    }
  
    table.stacked tr {
      margin-bottom: 1rem;
      border: none;
      padding: 0;
    }
  
    table.stacked td {
      text-align: left;
      padding: 8px;
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
    }
  
    /* Tambahkan latar belakang untuk baris genap */
    table.stacked tr:nth-child(even) {
      background-color: #f9f9f9;
    }
  }
  
  /*
  * ======================================
  * RESPONSIVE ADJUSTMENTS
  * (Penyesuaian untuk layar kecil)
  * ======================================
  */
  
  @media screen and (max-width: 600px) {
    /* Sesuaikan ukuran font tabel .tblkecil */
    .tblkecil {
      font-size: 11px;
    }
  
    /* Kurangi padding untuk sel tabel */
    .tblkecil th,
    .tblkecil td {
      padding: 2px 3px !important;
    }
  }
  