/* Estilos para el modal */
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0%;
    /* Reduce la posición desde la parte superior */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    /* Centra el contenido horizontalmente */
    padding: 20px 30px;
    /* Añade más espacio interior */
    border: 5px solid green;
    /* Verde claro */
    width: 450px;
    border-radius: 8px;
    line-height: 1.5;
    /* Mejora el espaciado entre líneas */
}


.close {
    color: #aaa;
    float: right;
    font-size: 18px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.input-modal {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    font-size: 15px;
}

.btn-update {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 22px;
}

.btn-update:hover {
    background-color: #45a049;
}

.requirement {
    color: red;
}

.requirement.met {
    color: green;
    font-weight: bold;
}