:root {
   --color-fondo: #ff6600;
   --color-texto: #FFFFFF;
   --color-descargar: #0c4fca;
}


body {
   font-family: Arial, sans-serif;
   background-color: #f4f4f4;
   color: #333;
   margin: 0;
   padding: 20px;
}

h1 {
   color: #ff6600;
   text-align: center;
   text-transform: uppercase;
}

.contenedor {
   display:flex;
   flex-direction: column;
   align-items: center;
}

.botones {
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 2rem;
}

.botones a {
   padding: 1rem 2rem;
   background-color: var(--color-fondo);
   color: var(--color-texto);
   text-decoration: none;
   font-weight: bold;
   border-radius: .5rem;
   font-size: 1.4rem;
}

.regresar a {
   font-size: 1rem;
}

.descargar {
   justify-content: flex-end;
}

.descargar a {
   font-size: 1rem;
   background-color: var(--color-descargar);
}

form {
   background: #fff;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 0 10px rgba(218, 201, 201, 0.1);
   max-width: 400px;
   margin: 20px auto;
}

label {
   display: block;
   margin-bottom: 10px;
   font-weight: bold;
}

input {
   width: calc(100% - 22px);
   padding: 10px;
   margin-bottom: 20px;
   border: 1px solid #ccc;
   border-radius: 4px;
}

input[type="submit"] {
   background-color: #ff6600;
   color: #fff;
   padding: 10px 20px;
   border: none;
   border-radius: 4px;
   cursor: pointer;
}

input[type="submit"]:hover {
   background-color: #e65c00;
}

table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 20px;
}

th, td {
   padding: 10px;
   border: 1px solid #ddd;
   text-align: left;
}

th {
   background-color: #ff6600;
   color: white;
}

tr:nth-child(even) {
   background-color: #f9f9f9;
}
