/* ============================================
   ESTILOS DE TABELAS
   ============================================ */

/* Container de Tabela */
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

/* Tabela Base */
table {
  width: 100%;
  border-collapse: collapse;
  background: transparent!important;
  color: var(--text-black) !important;
}

thead {
  background: transparent!important;
}

th {
  color: var(--text-black);
  font-weight: 700;
  padding: 12px 10px;
  text-align: left;
  border-bottom: 2px solid var(--glass-border);
  font-size: 0.85rem;
}

td {
  padding: 10px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-black);
  font-size: 0.85rem;
}

tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

/* Tabela Customizada */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.custom-table th,
.custom-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.custom-table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: #555;
}

/* Tabela Customizada - Colunas Específicas */
.th-imagem {
  width: 80px;
}

.th-acoes {
  width: 150px;
  text-align: center;
}

.td-data {
  font-size: 0.9rem;
}

.td-acoes {
  text-align: center;
}

/* Thumbnail de Imagem */
.thumb-img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  background: #eee;
}

.thumb-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #999;
}

/* Mensagem de Tabela Vazia */
.empty-table-message {
  text-align: center;
  padding: 30px;
  color: var(--text-black);
}

/* Tabelas Administrativas */
.admin-table-container {
  max-height: 600px;
  overflow-y: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead tr {
  border-bottom: 2px solid var(--brand-gold) !important;
}

.admin-table th {
  padding: 0.75rem;
  text-align: left;
  color: var(--brand-gold) !important;
  font-weight: 600;
}

.admin-table tbody tr {
  border-bottom: 1px solid rgba(90, 88, 88, 0.2);
}

.admin-table td {
  padding: 0.75rem;
  color: var(--white) !important;
}

.admin-table td strong {
  color: var(--white) !important;
}

.admin-table td small {
  color: rgba(255, 255, 255, 0.7) !important;
}

.admin-table-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

