/* Cuerpo general */
body {
    background-color: white;
    font-family: Century Gothic, sans-serif;
    padding: 20px;
    margin: 0;
}

/* Título */
h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-weight: normal;
}

/* Formulario sin fondo ni bordes llamativos */
form {
    max-width: 1100px;
    margin: auto;
    padding: 10px;
}

/* Tabla y celdas */
table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    font-size: 14px;
    vertical-align: middle;
}

/* Campos de entrada */
input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
    text-transform: uppercase;
    background-color: white;
}

/* Lectura */
input[readonly] {
    background-color: #f9f9f9;
    color: #555;
}

/* Botón principal */
input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: 30px auto 15px auto;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Botones adicionales (tipo enlace o input) */
a,
.boton-secundario {
    display: block;
    width: fit-content;
    margin: 10px auto;
    padding: 8px 18px;
    background-color: #6c757d;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

a:hover,
.boton-secundario:hover {
    background-color: #5a6268;
}
table {
  width: 90%;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #222;
  background-color: transparent;
}

table td, table th {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

table tr:nth-child(even) {
  background-color: #fafafa;
}

table tr:hover {
  background-color: #f1f1f1;
}