@import "tailwindcss";
 
body {
  font-family: "Figtree", sans-serif;
  background-color: #F3F8F3;
}

.intro-video {
  opacity: 0;
  transition: opacity 0.5s ease-in; /* duração de 500ms */
}

.intro-video.visible {
  opacity: 1;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.tk-table-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.tk-table-wrap {
  overflow-x: auto;
}

.tk-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.tk-table thead th {
  background: #f3f4f6;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.tk-table td {
  padding: 0.95rem 1rem;
  color: #334155;
  border-top: 1px solid #eef2f7;
  vertical-align: middle;
}

.tk-table tbody tr:first-child td {
  border-top: 0;
}

.tk-table tbody tr:hover {
  background: #f8fbf9;
}

.tk-table-cell-center {
  text-align: center;
}

.tk-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tk-icon-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.tk-icon-btn:hover {
  transform: translateY(-1px);
}

.tk-icon-btn svg {
  width: 1rem;
  height: 1rem;
}

.tk-icon-btn-edit {
  color: #b45309;
  background: #fef3c7;
}

.tk-icon-btn-edit:hover {
  color: #92400e;
  background: #fde68a;
}

.tk-icon-btn-delete {
  color: #b91c1c;
  background: #fee2e2;
}

.tk-icon-btn-delete:hover {
  color: #991b1b;
  background: #fecaca;
}

.tk-icon-btn-confirm {
  color: #166534;
  background: #dcfce7;
}

.tk-icon-btn-confirm:hover {
  color: #14532d;
  background: #bbf7d0;
}

@media (max-width: 768px) {
  .tk-table {
    min-width: 620px;
  }

  .tk-table thead th,
  .tk-table td {
    padding: 0.75rem 0.8rem;
  }
}

