/* ---------------------------------------------------------
   GLOBAL TABLE RESET — matches Claro's clean baseline
--------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
  background-color: #fff;
}

/* ---------------------------------------------------------
   HEADER — Claro-style shading, borders, and weight
--------------------------------------------------------- */
table thead th {
  background-color: #f3f4f5; /* Claro's light gray */
  color: #333;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #d0d4d9;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   BODY CELLS — consistent padding, crisp borders
--------------------------------------------------------- */
table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e2e5e9;
  vertical-align: middle; /* FIXES uneven cell alignment */
  color: #222;
}

/* ---------------------------------------------------------
   ZEBRA STRIPING — subtle, Claro-like
--------------------------------------------------------- */
table tbody tr:nth-child(even) {
  background-color: #fafbfc;
}

/* ---------------------------------------------------------
   LAST ROW BORDER CLEANUP
--------------------------------------------------------- */
table tbody tr:last-child td {
  border-bottom: 1px solid #d0d4d9;
}

/* ---------------------------------------------------------
   OPTIONAL: Make tables scroll on mobile (Claro behavior)
--------------------------------------------------------- */
.table-responsive {
  overflow-x: auto;
}
