/* AfroLex Connect — entries table */

.afrolex-entries-wrap {
  margin: 1.5rem 0;
  max-width: 100%;
}

.afrolex-entries-wrap--admin {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.afrolex-entries-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.afrolex-entries-count {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.afrolex-entries-empty,
.afrolex-entries-denied,
.afrolex-entries-error {
  padding: 1rem;
  border-radius: 8px;
  background: #f9fafb;
  color: #4b5563;
}

.afrolex-entries-error {
  background: #fdecea;
  color: #8a1f11;
}

.afrolex-entries-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.afrolex-entries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}

.afrolex-entries-table th,
.afrolex-entries-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: top;
}

.afrolex-entries-table thead th {
  background: #f8faf9;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}

.afrolex-entries-table tbody tr:hover {
  background: #fafdfb;
}

.afrolex-entries-table tbody tr:last-child td {
  border-bottom: none;
}

.afrolex-entries-pagination {
  margin-top: 1rem;
}

.afrolex-entries-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.afrolex-entries-pagination a,
.afrolex-entries-pagination span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-decoration: none;
  color: #1a7f4b;
}

.afrolex-entries-pagination span.current {
  background: #1a7f4b;
  border-color: #1a7f4b;
  color: #fff;
}

.afrolex-entries-filter {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.afrolex-entries-filter label {
  font-weight: 600;
}

.afrolex-entries-filter select {
  min-width: 220px;
}

@media (max-width: 640px) {
  .afrolex-entries-table thead {
    display: none;
  }

  .afrolex-entries-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 0;
  }

  .afrolex-entries-table td {
    display: block;
    border: none;
    padding: 6px 14px;
  }

  .afrolex-entries-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 2px;
  }
}
