body {
    background-color: #abacab; /* Fondo blanco para una sensación de amplitud */
    font-family: "Arial Black", sans-serif;
  }

  .header {
    background-color: #2f2f2f; /* Color de fondo más profundo */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    position: sticky; /* Encabezado fijo */
    top: 0;
    z-index: 10;

}
a{
    text-decoration: none;
}

.header img{
    width: 100px;
    height: 100px; /* Ajustar tamaño del logotipo */
    margin-right: 20px;
}

.header button{
    width: 130px;
    height: 75px;
    background: #f8f9fa;
    color: #42393b;
    text-align: center;
    border-radius: 8px;
}
.header a{
    color: #2f2f2f;

}

.header button:hover{
    transform: scale(1.1);
    background: #7b8487;
    transition: transform 0.3s ease
}


  h1 {
    color: #b37145; /* Morado pastel para los títulos */
    text-align: center;
    margin-top: 50px;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #676a67; /* Azul pastel para los formularios */
    padding: 20px;
    border-radius: 10px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    color: white; /* Morado oscuro para contraste en las etiquetas */
  }
  
  input[type="text"] {
    width: 90%;
    padding: 10px;
    border: 1px solid black; /* Borde azul pastel */
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  button {
    margin-top: 30px;
    background-color: #b37145; /* Botones morados pastel */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
  }
  
  .subirArchivo {
    height: 20px;
    background-color: #fadfb1; /* Botones morados pastel para subir archivos */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
  }
  
  table {
    margin-top: 30px;
    border-collapse: collapse;
    width: 100%;
    background-color: #ebebeb; /* Fondo claro para las tablas */
    border-radius: 10px;
  }
  
  th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #000000;
  }
  
  th {
    background-color: #b37145; /*================= Cabeceras de tabla azules pastel */
    color: #ffffff;
  }
  
  tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tbody tr:hover {
    background-color: #cccccc;
  }
  
  .volver-inicio {
    position: fixed;
    top: 20px;
    left: 20px;
  }
  
  .btn-volver {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    background-color: #545478; 
    color: #fff;
    border-radius: 5px;
  }
  
  .btn-volver:hover {
    background-color: #fadfb1;
  }
  
  .contenedor-principal {
    display: flex;
    justify-content: space-between;
  }
  
  .contenedor-formulario {
    flex: 1; 
    margin-top: 26px;
    margin-right: 30px; 
  }
  
  .contenedor-tabla {
    flex: 1.5; 
    margin-right: 30px;
  }
  
  button:hover, .subirArchivo:hover, .btn-volver:hover {
    background-color: #fbebd3; 
    color: black;
  }
  button#btnBorrar:hover {
    background-color: #d9534f; 
    color: #ffffff;
  }