#nif-lookup-wrapper {
    text-align: center;
    margin-top: 50px;
}

#nif-lookup-form {
    display: inline-block;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

#nif-lookup-form input[type="text"] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 16px;
}

#nif-lookup-form button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#nif-lookup-form button:hover {
    background-color: #005d8f;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}
