
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: oklch(88.695% 0.06335 2.321);
    color: #333;
}

header {
    background-image: url("imagenes/papix.jpg"); /* Replace with your image path */
    background-size: cover; /* Adjust as needed (e.g., contain, auto, etc.) */
    background-position: center; /* Adjust as needed */
    background-color: #ffd1dc;
    color: rgb(255, 255, 255);
    padding: 2em 1em;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1em;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    background-color: oklch(98.026% 0.00549 2.172 / 0);
    color: rgb(254, 255, 200);
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 2em;
    margin: 2em auto;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

button {
    background-color: #bde0fe;
    color: #333;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #a2d2ff;
}

footer {
    text-align: center;
    padding: 1.5em;
    background-color: #eedbe500;
    color: #333;
    margin-top: 3em;
    font-size: 0.9em;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.05);
}

input[type="number"], input[type="date"] {
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1em;
    display: block;
    width: 100%;
    max-width: 300px;
    
}
