@charset "utf-8";
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  
}

.tabla-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
}

.tabla-scroll {
  overflow-x: auto;
}

.tabla-tarifas {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.tabla-tarifas th,
.tabla-tarifas td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.tabla-tarifas th {
  background-color: #003366;
  color: #ffffff;
  position: sticky;
  top: 0;
}

.tabla-tarifas tr:hover {
  background-color: #f0f8ff;
}

@media (max-width: 600px) {
  .tabla-tarifas th,
  .tabla-tarifas td {
    padding: 10px;
    font-size: 14px;
  }

  h1 {
    font-size: 1.5em;
  }
}
/* CSS Document */

