body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

table {
	width: 100%;
	
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #e53935;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

header img {
    width: 80px;
    height: auto;
    margin-right: 20px;
}

h3 {
    color: #e53935;
    border-bottom: 2px solid #e53935;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

label {
    	display: inline;
    margin-top: 10px;
    font-weight: bold;
}

td {
	padding-top: 7px;
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 2px;
	
}

input[type="text"],
input[type="number"],
select {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



input[type="date"] {
    width: 68%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="radio"] {
    margin-right: 5px;

}

button {
    background-color: #e53935;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
}

button:hover {
    background-color: #c62828;
}

.hidden {
    display: none;
}

 .boton {
        background-color: gold;
		width: 90%;
        padding: 10px 20px;
        color: black;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        display: inline-flex; /* Flex para centrado completo */
        justify-content: center; /* Centrar horizontalmente */
        align-items: center; /* Centrar verticalmente */
  }
    .boton:hover {
        background-color: yellow; /* Color de fondo al pasar el mouse */
    }
	
	 .salir {
        background-color: #007bff;
		width: 20%;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
       
        display: inline-flex; /* Flex para centrado completo */
        justify-content: center; /* Centrar horizontalmente */
        align-items: center; /* Centrar verticalmente */
  }
    .salir:hover {
      /*  background-color: yellow; /* Color de fondo al pasar el mouse */
    }