body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    position: relative; /* Necesario para el z-index del pseudo-elemento */
}

/* Creamos el pseudo-elemento que contendrá el fondo desenfocado */
body::before {
    content: '';
    position: fixed; /* Ocupa toda la pantalla, independientemente del scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/fondo4.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px); /* Nivel de desenfoque */
    -webkit-filter: blur(8px); /* Compatibilidad con Safari */
    z-index: -1; /* Lo posicionamos detrás de todo el contenido */
    transform: scale(1.1); /* Escala ligeramente para evitar bordes borrosos */
}
/* Capa adicional para mejorar contraste */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
/* Creamos el pseudo-elemento que contendrá el fondo desenfocado */
body::before {
    content: '';
    position: fixed;
    /* Ocupa toda la pantalla, independientemente del scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/fondo.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    /* Nivel de desenfoque */
    -webkit-filter: blur(8px);
    /* Compatibilidad con Safari */
    z-index: -1;
    /* Lo posicionamos detrás de todo el contenido */
    transform: scale(1.1);
    /* Escala ligeramente para evitar bordes borrosos */
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}

form {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfd;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f8f8f8;
    color: #555;
    transition: border-color 0.3s;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #ebebeb;
    cursor: not-allowed;
    color: #888;
}


input[type="text"]:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    margin-top: 20px;
}

input[type="submit"]:hover {
    background-color: #218838;
}

/* Specific adjustments for the layout */
.legajo-info {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.legajo-info p {
    font-size: 1.1em;
}

.legajo-info u {
    text-decoration: none;
    font-weight: 600;
    color: #0056b3;
} 