.eton-wrap {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

/* Buscador */
.eton-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eton-search-wrap input {
  flex: 1;
  padding: 9px 14px;
  font-size: 14px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.eton-search-wrap input:focus {
  border-color: #3BC1C9;
}
.eton-search-wrap button {
  padding: 9px 18px;
  background: #3FC1C9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
}
.eton-search-wrap button:hover {
  background: #3FC1C9;
}

/* Tabla */
.eton-dir {
  width: 100%;
  border-collapse: collapse;
}
.eton-dir th {
  background-color: #3FC1C9;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.eton-dir td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.eton-dir tr.data-row:nth-child(even) td {
  background-color: #f7f7f7;
}
.eton-dir tr.data-row:hover td {
  background-color: #fff5e5;
}

/* Encabezado de sección principal – negro */
.eton-dir .sec-main td {
  background-color: #033554;
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 12px;
}

/* Subsección – naranja */
.eton-dir .sec-sub td {
  background-color: #2197A4;
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 12px;
}

.eton-dir .bold-name {
  font-weight: bold;
}
.eton-dir a {
  color: #c98810;
  text-decoration: none;
}
.eton-dir a:hover {
  text-decoration: underline;
}

/* Resaltado de búsqueda */
.eton-dir mark {
  background: #FFE082;
  color: #000;
  border-radius: 2px;
  padding: 0 2px;
}

/* Sin resultados */
.eton-no-results {
  display: none;
  padding: 14px;
  text-align: center;
  color: #888;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .eton-dir th:nth-child(4),
  .eton-dir td:nth-child(4) {
    display: none;
  }
  .eton-dir th:nth-child(5),
  .eton-dir td:nth-child(5) {
    display: none;
  }
}