/* ========================= */
/* ESTILOS GENERALES DEL BODY */
/* ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* ========================= */
/* ESTILOS DE TABLAS GENERALES */
/* ========================= */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  overflow-x: auto;
  display: block;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

/* ========================= */
/* BOTONES Y FORMULARIOS */
/* ========================= */
button {
  padding: 6px 12px;
  background-color: #1976d2;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

button:hover {
  background-color: #115293;
}

input[type="file"] {
  padding: 4px;
  margin-right: 8px;
}