/*
  * ======================================
  * 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;
    }
  }



  /*
  * ======================================
  * DARI GAPURA ISLAM
  * ======================================
  */
  
  @font-face {
  font-family: 'OpenQuran';
  src: url('https://gapura.web.id/wp-content/fonts/openquran.woff2') format('woff2'),
       url('https://gapura.web.id/wp-content/fonts/openquran.woff') format('woff'); /* Opsional, tetapi disarankan */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
p.quran {
  text-align: right;
  font-family: 'OpenQuran', serif; /* Memanggil font yang sudah didefinisikan */
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
}



/*
 * Aturan untuk daftar berurutan (ol)
 */
.entry-content ol {
    list-style: none !important;
    margin: 0 !important;
    padding-left: 20px !important; /* Jarak untuk menempatkan nomor */
    counter-reset: my-custom-counter !important;
}

.entry-content ol > li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 25px !important; /* Jarak teks dari nomor */
}

.entry-content ol > li::before {
    content: counter(my-custom-counter) '. ' !important;
    counter-increment: my-custom-counter !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
}

/*
 * Aturan untuk daftar tak berurutan (ul)
 */
.entry-content ul {
    list-style: none !important;
    margin: 0 !important;
    padding-left: 20px !important; /* Jarak untuk menempatkan bullet */
}

.entry-content ul li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 20px !important; /* Jarak teks dari bullet */
}

.entry-content ul li::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
}

  