/* ===== Styling khusus untuk tabel "Daftar Lirik" (hanya target table ini) ===== */
div.table-responsive > table[data-component-id="radix:views-view--table"].table.table-bordered {
  width: 100%;
  border-collapse: separate;           /* supaya radius & shadow bekerja rapi */
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;                    /* potong sudut agar radius bekerja */
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  background: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Header tunggal */
div.table-responsive > table[data-component-id="radix:views-view--table"] thead th {
  background-color: #0dcaf0;           /* warna info, bisa diganti */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 16px;
  text-align: left;
  border: 0;
  letter-spacing: 0.2px;
}

/* Baris isi tabel */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody td {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
  vertical-align: middle;
  background: #fff;
}

/* Alternating row warna yang lembut (opsional visual) */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody tr:nth-child(odd) td {
  background: #fbfeff;
}

/* Hover effect pada baris */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody tr:hover td {
  background: #e6faff;
  color: #0d6efd;        /* biru link */
  transition: background-color .18s ease-in-out;
}

/* Styling link judul agar lebih menonjol */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody td a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}

/* Hover untuk link */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody td a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

/* Kelas baris spesifik (jika diperlukan) */
div.table-responsive > table[data-component-id="radix:views-view--table"] tbody tr.table-daftar-lirik td {
  /* kosong — ada bila mau tambahkan aturan khusus per baris */
}

/* Responsive tweak: buat padding lebih kecil di layar kecil */
@media (max-width: 576px) {
  div.table-responsive > table[data-component-id="radix:views-view--table"] thead th,
  div.table-responsive > table[data-component-id="radix:views-view--table"] tbody td {
    padding: 10px 12px;
    font-size: 0.98rem;
  }
}

.more-link {
    float: inline-end;
    text-align: center;
    background-color: var(--bs-info);
    color: #fff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
    width: 40%;
}

.more-link a{
	text-decoration: none;
}

.more-link:hover {
  background-color: var(--bs-info-hover, #31d2f2); /* hover effect */
  color: #fff;
}

.layout__region.layout__region--first{
	padding:5px;
}

.layout__region.layout__region--second{
	padding:5px;
}