.contenedorTabpaPestanas {
  margin-top: 100px;
}

.tabs {
  display: flex;
  width: 100%;
}

.tab-button {
  flex: 1;
  cursor: pointer;
  background-color: #3b2c21;
  text-align: center;
  padding: 0.9vh;
  border-radius: 1rem 1rem 0 0;
  border-bottom: 5px solid #ccc;
}

.tab-button.active {
  background-color: #0066cc;
  font-weight: bold;
  border: 5px solid #ccc;
  border-bottom: none;
  padding: 0.9vh;
  border-radius: 1rem 1rem 0 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

table {
  background-color: #5e643ccc;
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  text-align: center;
  border: 5px solid #ccc;
  border-top: none;
  font-size: clamp(0.5rem, 2.4vw, 1.5rem);
}

th, td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}

thead th {
  background-color: #0066cc;
  color: white;
}

caption {
  caption-side: top;
  font-size: 1.2em;
  margin-bottom: 10px;
}

